What does this expression evaluate to?
"Cool".+("io")
Answer:
"Coolio"
This is another way to concatenate Strings. The previous example actually uses syntactic sugar (a deviation from formal syntax to enhance code readability) and this example uses the strict syntax.