Skip to content

Instantly share code, notes, and snippets.

@Diullei
Created February 2, 2012 22:29
Show Gist options
  • Save Diullei/1726200 to your computer and use it in GitHub Desktop.
Save Diullei/1726200 to your computer and use it in GitHub Desktop.
(function(exports){
function Carro(marca){
this.marca = marca;
}
Carro.prototype.andar = function(km){
console.log('andando a ' + km + 'km/h');
}
exports.Carro = Carro;
})(this);
var camaro = new Carro('camaro');
camaro.andar(3);
//=> andando a 3km/h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment