首页 > 代码库 > lodash常用方法2--修改
lodash常用方法2--修改
1.map
function timesThree(n) { return n * 3; } _.map([1, 2], timesThree); // => [3, 6]
2.remove
移除数组 array
中满足 predicate
条件的所有元素 ,返回的是被移除元素数组.
var array = [1, 2, 3, 4]; var evens = _.remove(array, function(n) { return n % 2 == 0; }); console.log(array); // => [1, 3] console.log(evens); // => [2, 4]
3.uniq
唯一
_.uniq([2, 1, 2]); // => [2, 1] // using `isSorted` _.uniq([1, 1, 2], true); // => [1, 2] // using an iteratee function _.uniq([1, 2.5, 1.5, 2], function(n) { return this.floor(n); }, Math); // => [1, 2.5] // using the `_.property` callback shorthand _.uniq([{ ‘x‘: 1 }, { ‘x‘: 2 }, { ‘x‘: 1 }], ‘x‘); // => [{ ‘x‘: 1 }, { ‘x‘: 2 }]
lodash常用方法2--修改
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。