Backbone.sync = function(method, model) {
return method;
};
var person = new Backbone.Model ({
Country:"Venus",
Name:"Mister Vensusresident"
});
console.log(person.fetch());
/*sync() can be thought of as what to do with the data when we call fetch()*/