Tag Archives: Concatting strings

Quick Tip JavaScript concat operator

JavaScript has string concatting built into the langauge for example. var hello = "hel" + "lo" This is not the interesting point I wanted to talk about. It actually gets more interesting on what happens when you concat string literals with numbers. For example: var x = "33" + 3 // result "333" Notice the [...]

Continue Reading