Sign in
webkit
/
WebKit
/
10627ba484528fed3e7358b1801250bb004c8a99
/
.
/
JSTests
/
es6
/
destructuring_with_arrays.js
blob: 6deb63ee7713759b938cbe14757a0666dfd3c204 [
file
] [
log
] [
blame
]
function
test
()
{
var
[
a
,
,
[
b
],
c
]
=
[
5
,
null
,
[
6
]];
var
d
,
e
;
[
d
,
e
]
=
[
7
,
8
];
return
a
===
5
&&
b
===
6
&&
c
===
undefined
&&
d
===
7
&&
e
===
8
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);