I\'d like for something like 5 + 6 to return \"56\" instead of 11.
5 + 6
\"56\"
11
Use "" + 5 + 6 to force it to strings. This works with numerical variables too:
"" + 5 + 6
var a = 5; var b = 6; console.log("" + a + b);