Created
November 19, 2019 09:59
-
-
Save myogeshchavan97/2202e1d6dc840ccb305cf77f71e28770 to your computer and use it in GitHub Desktop.
Array Spread Operator
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
const numbers = [10, 20, 30, 40, 50]; | |
const [first, ...rest] = numbers; | |
console.log(first); | |
console.log(rest); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment