Created
April 18, 2018 09:01
-
-
Save gladchinda/f7385cd9863bc24cdbea540e5b46c813 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 rgb = [255, 200, 0]; | |
// Array Destructuring | |
const [red, green, blue] = rgb; | |
console.log(`R: ${red}, G: ${green}, B: ${blue}`); // R: 255, G: 200, B: 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment