Skip to content

Instantly share code, notes, and snippets.

@jacobgardner
Forked from jrhii/example.js
Created February 8, 2017 05:36
Show Gist options
  • Save jacobgardner/4406bd0e81aa733395259ac12fd2da1a to your computer and use it in GitHub Desktop.
Save jacobgardner/4406bd0e81aa733395259ac12fd2da1a to your computer and use it in GitHub Desktop.
vehicles.forEach((ownedVehicle) => {
VehicleModel.findOne({_id: ownedVehicle.vehicleId}, (err, vehicle) => {
if (err) throw err;
console.log(vehicle);
returnArr.push({
year: vehicle.year,
make: vehicle.make,
model: vehicle.model,
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment