Created
January 27, 2017 08:21
-
-
Save nchevobbe/af2653f2717426993debe6526a51cbb4 to your computer and use it in GitHub Desktop.
Array.fill
This file contains hidden or 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 [a, b] = (new Array(2)).fill(Symbol()); | |
console.log(a === b); // -> true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment