Underscore.JS map方法
语法
_.map(list, iteratee, [context])
map方法通过在给定元素列表上迭代时映射列表的每个值,调用绑定到上下文对象的迭代函数(如果传递的话),从而产生一个新的值数组。迭代函数被传递三个参数:(元素,索引,列表)。对于JavaScript对象,迭代函数的对象将是(值,键,列表)。返回链式调用的列表。
示例
var _ = require('underscore');
//Example 1. get Square of each number of array
var list = _.map([1, 2, 3], function(x) { return x*x });
console.log(list);
//Example 2. get squre of each number of object
list = _.map({one: 1, two: 2, three: 3}, function(value, key) { return value*value });
console.log(list);
将上述程序保存在 tester.js 文件中。运行以下命令以执行此程序。
命令
>node tester.js
输出
[ 1, 4, 9 ]
[ 1, 4, 9 ]