I\'d like for something like 5 + 6 to return \"56\" instead of 11.
5 + 6
\"56\"
11
Another possibility could be this:
var concat = String(5) + String(6);