Skip to content

Instantly share code, notes, and snippets.

@hamg26
Created August 14, 2019 17:13
Show Gist options
  • Save hamg26/5e7615b90e59bd945fd48ad3a3553f77 to your computer and use it in GitHub Desktop.
Save hamg26/5e7615b90e59bd945fd48ad3a3553f77 to your computer and use it in GitHub Desktop.
Javascript string concatenations
('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