JavaScriptのスプレッド構文を使用して配列の残りの要素を変数に代入する方法
スプレッド構文を使用すると、配列の残りの要素を新しい配列として取得し、それを変数に代入することができます。以下の例をご覧ください。const array = [1, 2, 3, 4, 5]; const [firstElement, ...remainingElements] = array; console.log(firstElement); // 1 console.log(remainingElements); // [2, 3, 4, 5]>>More