admin管理员组文章数量:1341406
I'm looking how to zip an array of objects with values including a new key for each value using lodash. Tried with zip, zipObject and map but I don't find the key.
What I want to do is the following (avoiding to iterate manually over the arrays)
const array = [
{a: 3, b: 42},
{c: 4},
{d: 12}
]
const values = ['these', 'are', 'new', 'values']
// goal = foo(array, values) <<< HERE
goal = [
{a: 3, b: 42, v: 'these'},
{c: 4, v: 'are'},
{d: 12, v:'new'}
]
I'm looking how to zip an array of objects with values including a new key for each value using lodash. Tried with zip, zipObject and map but I don't find the key.
What I want to do is the following (avoiding to iterate manually over the arrays)
const array = [
{a: 3, b: 42},
{c: 4},
{d: 12}
]
const values = ['these', 'are', 'new', 'values']
// goal = foo(array, values) <<< HERE
goal = [
{a: 3, b: 42, v: 'these'},
{c: 4, v: 'are'},
{d: 12, v:'new'}
]
Share
Improve this question
edited Oct 28, 2021 at 10:04
Manu Artero
asked Dec 16, 2015 at 10:14
Manu ArteroManu Artero
10.3k8 gold badges67 silver badges77 bronze badges
2 Answers
Reset to default 6You can use zipWith() to provide a custom iteratee:
var newArray = _.zipWith(array, values, function(item, value) {
return _.defaults({ v: value }, item);
});
Note that this approach doesn't mutate the original array
.
You can use the native map
function. See the below snippet.
If you want to use lodash to do this, you can just do the same thing except with _.map(array, function (item, index) {...});
.
var array = [
{a: 3, b: 42},
{c: 4},
{d: 12}
];
var values = ['this', 'are', 'new', 'values']
var goal = array.map(function (item, index) {
item.v = values[index];
return item;
});
document.getElementById('goal').innerHTML = JSON.stringify(goal);
<div id="goal"></div>
本文标签: javascriptlodash how to zip an array of objects with valuesStack Overflow
版权声明:本文标题:javascript - lodash: how to zip an array of objects with values - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743625237a2512180.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论