Agile育成ブログ
未来を変える喜びを
未分類

スプレッド構文


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490

スプレッド構文は…という形でドットを3つ繋げて使用します。
配列に対して使用することで内部の要素を順番に展開してくれます。

const arr1 = [1,2];
console.log(arr1);
[1,2]

const arr1 = [1,2];
console.log(...arr1);
1 2

You cannot copy content of this page