isNew
If the data is not in the dat
instance.isNew()
Returns if the instance has not been loaded from or saved to the data source.
connect([...],{
Map: Todo
});
var todo = new Todo();
todo.isNew() //-> true
todo.save().then(function(){
todo.isNew() //-> false
})