blob: 4bf3be3a4f3b7659a46bb3c86c155803b6df3ff9 [file] [log] [blame]
function test() {
var [a, b, c] = "ab";
var d, e;
[d,e] = "de";
return a === "a" && b === "b" && c === undefined
&& d === "d" && e === "e";
}
if (!test())
throw new Error("Test failed");