Last active
April 26, 2017 04:57
-
-
Save Ibro/fd7dd40c8f13c6d95f12b4fbf0171f43 to your computer and use it in GitHub Desktop.
JavaScript symbols basics - Coding Blast - www.codingblast.com
This file contains 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
let symbol1 = Symbol(); | |
let symbol2 = Symbol(); | |
console.log(symbol1 === symbol2); | |
var obj = {}; | |
obj[symbol1] = 5; | |
obj[symbol2] = 11; | |
console.log(obj); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment