-2
私が広がりオペレータについてこの例でつまずくと、ここで何が起こっているのかを理解しようとした:スプレッド演算子とイテレータプロトコル
let str = 'helloworld';
let first, rest;
[first, ...rest] = [...str];
console.log(first); // "h"
console.log(rest); // ["e", "l", "l", "o", "w", "o", "r", "l", "d"]
誰かが私を助けることができますか?