1.map 有返回值,返回一個新的陣列,每個元素為呼叫func的結果。 let list = [1, 2, 3, 4, 5]; let other = list.map((d, i) => { return d * 2; } ...
確定! 回上一頁