find() 會將陣列中的「每一個」元素帶入指定的函式內做判斷,並會回傳第一個符合判斷 ... let a = [1,2,3,4,5,6,7,8]; let b = a.map(function(e){ return e + this; ...
確定! 回上一頁