whats the difference between the 2 below declarations?
var vehiclePrototype = function{
function init(carModel) {
this.model = carModel;
}
};
and
var vehiclePrototype = {
init: function (carModel) {
this.model = carModel;
}
};