updates a specific item
id | string|number | the item id |
data | object | the data object of the item |
var data = myDatastore.item(id);
myDatastore.update(data);
//or
var data = myDatastore.item(id);
data.property = "new value";
myDatastore.update(id, data);
Back to top