Created
February 9, 2019 09:54
-
-
Save Magistern/719eb0fe64b7d006f31e81cf7852d928 to your computer and use it in GitHub Desktop.
Strin2number-concatenation
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
"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