Skip to content

Instantly share code, notes, and snippets.

@shonnly
Created April 26, 2020 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shonnly/3bc817181c3a7e26eaabac08e2b768d4 to your computer and use it in GitHub Desktop.
Save shonnly/3bc817181c3a7e26eaabac08e2b768d4 to your computer and use it in GitHub Desktop.
var s1 = Symbol('foo'); // local symbol for 'foo'
var s2 = Symbol.for('foo'); // global symbol for 'foo'
s1 === s2 // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment