Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Created January 18, 2022 13:28
Show Gist options
  • Save petrosDemetrakopoulos/c3fdb912450108836bafc3e4a17c7b03 to your computer and use it in GitHub Desktop.
Save petrosDemetrakopoulos/c3fdb912450108836bafc3e4a17c7b03 to your computer and use it in GitHub Desktop.
Ethairballoons updateById
var updatedCarObject = { engine: 'V9', wheels: 4 };
Car.updateById('Audi A4', updatedCarObject, function (err, updatedObject) {
if (!err) {
console.log('object updated successfully');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment