W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
創(chuàng)建一個數(shù)組, value(值) 是 iteratee(迭代函數(shù))遍歷 collection(集合)中的每個元素后返回的結(jié)果。 iteratee(迭代函數(shù))調(diào)用3個參數(shù):(value, index|key, collection).lodash 中有許多方法是防止作為其他方法的迭代函數(shù)(注:即不能作為iteratee參數(shù)傳遞給其他方法),例如:_.every,_.filter,_.map,_.mapValues,_.reject, 和_.some。受保護(hù)的方法有(注:即這些方法不能使用_.every,_.filter,_.map,_.mapValues,_.reject, 和_.some作為 iteratee 迭代函數(shù)參數(shù)) :ary, chunk, curry, curryRight, drop, dropRight, every,fill, invert, parseInt, random, range, rangeRight, repeat,sampleSize, slice, some, sortBy, split, take, takeRight,template, trim, trimEnd, trimStart, and words
0.1.0
(Array): 返回新的映射后數(shù)組。
function square(n) { return n * n;} _.map([4, 8], square);
// => [16, 64]
_.map({ 'a': 4, 'b': 8 }, square);
// => [16, 64] (iteration order is not guaranteed)
var users = [ { 'user': 'barney' }, { 'user': 'fred' }];
// The `_.property` iteratee shorthand.
_.map(users, 'user');
// => ['barney', 'fred']
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: