JS中 map, filter, some, every, forEach, for in, for of 用法總結

1.map 有返回值,返回一個新的數組,每一個元素爲調用func的結果。 let list = [1, 2, 3, 4, 5]; let other = list.map((d, i) => { return d * 2; }); console.log(other); // print: [2, 4, 6, 8, 10] 2.filter 有返回值,返回一個符合func條件的元素數組 let l
相關文章
相關標籤/搜索