将两个数组(键和值)合并到一个对象中
是否有一个常见的 Javascript/Coffeescript 特定习惯用法可以用来完成此任务?主要是出于好奇。
我有两个数组,一个由所需的键组成,另一个由所需的值组成,我想将其合并到一个对象中。
keys = ['one', 'two', 'three']
values = ['a', 'b', 'c']
Is there a common Javascript/Coffeescript-specific idiom I can use to accomplish this? Mainly out of curiosity.
I have two arrays, one consisting of the desired keys and the other one consisting of the desired values, and I want to merge this in to an object.
keys = ['one', 'two', 'three']
values = ['a', 'b', 'c']
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
解释:
在coffeescript中,您可以迭代一个数组并获取每个项目及其在数组或索引上的位置。
因此,您可以使用该索引将键和值分配给新对象。
Explanation:
In coffeescript you can iterate an array and get each item and its position on the array, or index.
So you can then use this index to assign keys and values to a new object.
只要两个数组的长度相同,就可以这样做:
As long as the two arrays are the same length, you can do this: