Created
August 11, 2015 23:54
-
-
Save mikebranstein/c3ab96771f233f81e00f to your computer and use it in GitHub Desktop.
Poor String Concatenation Technique
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var name = "Mike"; | |
var age = 77; | |
var concat = "My name is " + name + ", and I am " + age + " years old."; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment