Created
April 18, 2018 09:29
-
-
Save gladchinda/54e3742d36d241ed720eb90f387e60d0 to your computer and use it in GitHub Desktop.
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
const rainbow = ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']; | |
// Cloning with array destructuring and spread operator | |
const [...rainbowClone] = rainbow; | |
console.log(rainbow === rainbowClone); // false | |
console.log(rainbowClone); // ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment