Underscore.JS each方法
语法
_.each(list, iteratee, [context])
每个方法都会迭代给定的元素列表,调用绑定到上下文对象的迭代函数(如果传递)。迭代函数被调用时带有三个参数:(元素,索引,列表)。对于JavaScript对象,迭代函数的对象将是(值,键,列表)。返回列表以实现链式调用。
示例
var _ = require('underscore');
var list = '';
//Example 1. access each number of array
_.each([1, 2, 3], function(x) { list += x + ' ' });
console.log(list);
list = ''
//Example 2. access each key-value of object
_.each({one: 1, two: 2, three: 3}, function(value, key) { list += key + ':' + value + ' ' });
console.log(list);
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
>node tester.js
输出
1 2 3
one:1 two:2 three:3