Created
September 11, 2019 01:35
-
-
Save meidikawardana/057cf449f60e327ef839e34fdce1a08f to your computer and use it in GitHub Desktop.
next gen js - array destructuring
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> | |
"use strict"; | |
var numbers = [1, 2, 3]; | |
num1 = numbers[0]; | |
num3 = numbers[2]; | |
console.log(num1, num3); | |
</script> | |
<script id="jsbin-source-javascript" type="text/javascript">const numbers = [1,2,3]; | |
[num1, ,num3] = numbers; | |
console.log(num1,num3); | |
</script></body> | |
</html> |
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
"use strict"; | |
var numbers = [1, 2, 3]; | |
num1 = numbers[0]; | |
num3 = numbers[2]; | |
console.log(num1, num3); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment