What is the difference between Backbone js model set and save method ?
var book = new Backbone.Model({
title: "The Rough Riders",
author: "Theodore Roosevelt"
});
book.save({author: "Teddy"});
book.set("title", "A Scandal in Bohemia");
As per the official backbone js documentation page it is described as saving a model into database by delegating into Backbone.sync. Is that the only difference between these methods?
Thanks,
Srinivas