Array destructuring
const dimensions = [20, 5] // create variables const [width, height] = dimensions; // log them console.log(width); //20 console.log(height); //5
[20, 5]という配列から、widthに20、heightに5が格納されたことがわかります
左側に[]が来たら、Array destructuringが使用されているサインです。
Array concatenation
const appsOne = ["Skype", "WhatsApp"]; const appsTwo = ["LINE", "kakao"]; const newArray = [...appsOne, ...appsTwo]; console.log(newArray); // ["Skype", "WhatsApp", "LINE", "kakao"]
複数の配列を1つの配列に集約するには、…を使います。
コメントを書く