Forgive my ignorance, I want to know what is the difference between:
class Car extends Backbone.Model {
}
and
var Car = Backbone.Model.extend({
});
As silly as I was, the first expression is from coffee script syntax, which compiles to the lower one (not exactly, but does the same thing).
from http://javascript.crockford.com/inheritance.html