I have the following array:
var ships = [ { locations: [], hits:0 },
{ different: [], different1:0 },
{ different3: [], different2:0 } ];
How do I reference the array "locations" inside the 1st object and push something to it? Thanks!
ships?