What does it mean in swift when there is a period bewteen two variables and/or functions. I know it's very simple but I can't find an answer and it's driving me crazy. An example program is below:
“let string1 = "hello"
let string2 = " there"
var welcome = string1 + string2
// welcome now equals "hello there”
let exclamationMark: Character = "!"
welcome.append(exclamationMark)
// welcome now equals "hello there!”
Excerpt From: Apple Inc. “The Swift Programming Language.” iBooks. https://itun.es/ca/jEUH0.l
What's the use of the period between welcome and append? What does it do?