Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xxl007/11119946 to your computer and use it in GitHub Desktop.
Save xxl007/11119946 to your computer and use it in GitHub Desktop.
Concatenating a String and Another Data Type
var numValue = 23.45;
var total "And the total is " + numValue; // string has "And the total is 23.45"
// the javascript engine first converts the other data type's value into a string before concatenating
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment