Created
August 14, 2019 17:13
-
-
Save hamg26/5e7615b90e59bd945fd48ad3a3553f77 to your computer and use it in GitHub Desktop.
Javascript string concatenations
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
('b' + 'a' + + 'a' + 'a').toLowerCase(); // should print "banana" | |
('' + + ''); // should print "0" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment