Skip to content

Instantly share code, notes, and snippets.

@vipulbhj
Created March 23, 2019 19:01
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 vipulbhj/8ef7eea2ba4bf3aa8b9a7becb7eaeacb to your computer and use it in GitHub Desktop.
Save vipulbhj/8ef7eea2ba4bf3aa8b9a7becb7eaeacb to your computer and use it in GitHub Desktop.
For the Symbols blog
const sym1 = Symbol();
const sym2 = Symbol();
sym1 === sym2;
// false
const sym3 = Symbol.for("cat");
const sym4 = Symbol.for("cat");
sym3 === sym4;
// true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment