要用 array methods 操作它就要幫它整形
此方法除了轉型,且可以配合箭頭函示遍歷每個 element
(截自MDN)
Array.from([1, 2, 3], x => x + x);
// [2, 4, 6]
// 產生數值序列
// 因為陣列中的每個位置都會被初始化為 `undefined`,
// 下方 `v` 會是 `undefined`
Array.from({length: 5}, (v, i) => i);
// [0, 1, 2, 3, 4]
沒有留言:
張貼留言