Files
study/modern-react/my-modern/destruct_nest_array.js

3 lines
119 B
JavaScript

const list = [200, [300, 301, 302]];
const [x, [y1, y2, y3]] = list;
console.log(y1, y2, y3); // 결과: 300 301 302