DEBSOURCES
Skip Quicknav
sources / libnb-platform18-java / 12.1-3 / webcommon / javascript2.editor / test / unit / data / testfiles / markoccurences / destructuringAssignments / arrayDestructuring04.js
123456789
function f() { return [1, 2, 3]; } var [a, , b] = f(); console.log(a); // 1 console.log(b); // 3 [,,,] = f();