JS Constructor
see CoffeeScript Class
by justinwyllie
JavaScript
Car = function(model) {
this.model = model
}
Car.prototype.drive = function() {
alert('driving ' + this.model)
}
car = new Car('Jaguar');
car.drive(); //Jaguar
myDrive = car.drive;
myDrive();