Skip to content

Instantly share code, notes, and snippets.

@Magistern
Created February 9, 2019 09:54
Show Gist options
  • Save Magistern/719eb0fe64b7d006f31e81cf7852d928 to your computer and use it in GitHub Desktop.
Save Magistern/719eb0fe64b7d006f31e81cf7852d928 to your computer and use it in GitHub Desktop.
Strin2number-concatenation
"a " + "ha" // "a ha"
"F" + "1" // "F1"
"F" + 1 // "F1" automatic type conversion
"2" + "1" // "21"
"2" + 1 // "21" automatic type conversion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment