I was wondering the best way to add to a String in Swift 4. Did Apple create a better way than stringName.characters.append(“hi”)
Edit: Noted below which I never knew you used to be able to use a String.append(). I was trying to get at the fact that in Swift 4 you don't have to use .characters anymore. I was trying to help out new people to swift 4 by making a question that they might ask so that they can save time by not using .characters after a String variable.
string.append(anotherString)