I am a motivated junior software developer passionate about building efficient and user-friendly applications. My goal is to grow as a Full Stack Developer, improving both frontend and backend. I am studying at Astana IT University under the Software Engineering program. Also i have a background in iOS development with Swift and have been actively working on small projects to sharpen my skills.
func booleanToString(_ b: Bool) -> String {
if b {
return "true"
} else {
return "false"
}
}