对象遍历
_.mapObject(object, iteratee, [context])
它类似于map,但是这用于对象。转换每个属性的值。
_.mapObject({start: 5, end: 12}, function(val, key) {
return val + 5;
});
=> {start: 10, end: 17}
将上文中的示例,在右侧javascript代码框中实现。
_.mapObject(object, iteratee, [context])
它类似于map,但是这用于对象。转换每个属性的值。
_.mapObject({start: 5, end: 12}, function(val, key) {
return val + 5;
});
=> {start: 10, end: 17}