Skip to content

Instantly share code, notes, and snippets.

@nbp
Last active October 8, 2019 12:56
Show Gist options
  • Save nbp/ce8921dde70dc4c8e0d7c2372ecbb859 to your computer and use it in GitHub Desktop.
Save nbp/ce8921dde70dc4c8e0d7c2372ecbb859 to your computer and use it in GitHub Desktop.
zero-width-whitespaces are valid identifier names in JavaScript
a‌b = 1;
ab = 2;
a‍b = 3;
console.log(`ab = ${ab}, a‌b = ${a‌b}, a‍b = ${a‍b}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment