April 2017
Intermediate to advanced
316 pages
9h 33m
English
Strings and characters can be concatenated as follows:
let string1 = "Hello" let string2 = " Mr" var welcome = string1+string2 var instruction = "Follow us please" instruction += string2 let exclamationMark: Character = "!" welcome.append(exclamationMark)
Read now
Unlock full access