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