Created
January 8, 2019 17:53
-
-
Save seemcat/0a6d4a4453ad3948fe80885552e95876 to your computer and use it in GitHub Desktop.
No Error With Type in JS
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 = "hello"; | |
// prints out hello | |
b = 6; | |
// prints out 6 | |
a + b; | |
// prints out hello6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment