So after searching the interwebz for a few hours I have not found the solution I am looking for.
I have two arrays that contain game objects with a lot of informatio
Using underscore extend, you can do:
var objects = [{ bar : 1, nuts : 2} , {foo : 3, nuts : 4}] _.extend.apply(this,objects)
If the list can be empty, make sure to append an empty object to it.