map()函數遍曆一個集合並將每個值傳遞給回調。在JavaScript中,該數組首先轉換為一個集合,然後將該函數應用於該集合。
用法:
data.map(rule)
Parameters: 該函數接受如上所述和以下描述的單個參數:
- rule: 此參數保存要應用於集合的操作規則或條件。
返回值:返回修改後的收藏列表。
以下示例說明了collect.js中的map()函數
範例1:在此示例中,我們獲取一個集合,然後使用map()函數將操作應用於該集合。
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const num = [1, 2, 3, 4, 5];
const data = collect(num);
const x = data.map(e => e * 3);
console.log(x.all());
輸出:
[ 3, 6, 9, 12, 15 ]
範例2:與上麵的示例相同,但是應用了不同的操作來執行。
Python3
//It is used to import collect.js library
const collect = require('collect.js');
const num = [10 ,20 ,30 ,40, 50];
const data = collect(num);
const x = data.map(e => e / 10);
console.log(x.all());
輸出:
[1 , 2, 3 ,4 ,5]
相關用法
- d3.js d3.map.set()用法及代碼示例
- PHP Ds\Deque map()用法及代碼示例
- PHP Ds\Vector map()用法及代碼示例
- PHP Ds\Sequence map()用法及代碼示例
- PHP Ds\Map sorted()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Map putAll()用法及代碼示例
- PHP Ds\Map values()用法及代碼示例
- PHP Ds\Map skip()用法及代碼示例
- PHP Ds\Map reduce()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- PHP Ds\Map union()用法及代碼示例
- PHP Ds\Map merge()用法及代碼示例
- PHP Ds\Map ksorted()用法及代碼示例
- PHP Ds\Map::ksort()用法及代碼示例
- PHP Ds\Map allocate()用法及代碼示例
- PHP Ds\Map capacity()用法及代碼示例
- PHP Ds\Map intersect()用法及代碼示例
- PHP Ds\Map __construct()用法及代碼示例
- PHP Ds\Map count()用法及代碼示例
- PHP Ds\Map diff()用法及代碼示例
- PHP Ds\Map filter()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- d3.js d3.map.empty()用法及代碼示例
注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Collect.js | map() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。