Last active
January 18, 2022 13:26
-
-
Save petrosDemetrakopoulos/649d1fd22a5d603d755c3d8e24e03e27 to your computer and use it in GitHub Desktop.
Ethairballoons save
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var newCarObject = {model:'Audi A4', engine: 'V8', wheels: 4}; | |
Car.save(newCarObject, function (err, objectSaved) { | |
if (!err) { | |
console.log('object saved'); | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment