如何添加字段的JavaScript数组中的每个对象没有循环?

有没有方法来添加一个字段的每个对象的Javascript数组没有循环呢?

就像是

array.each(function (index, object){ object[newField] = anotherArray[index]; }); 

您可能对Object({})和Array([])之间的区别感兴趣。

目前,caching的长度循环为arrays提供了最好的性能。

但是Array也提供了一个forEach方法: https : //developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach