Skip to content

Instantly share code, notes, and snippets.

@Diullei
Created February 2, 2012 22:25
Show Gist options
  • Save Diullei/1726179 to your computer and use it in GitHub Desktop.
Save Diullei/1726179 to your computer and use it in GitHub Desktop.
// definindo a função que será utilizada como contrutor do nosso objeto.
var Carro = function(marca){
this.marca = marca;
}
// criamos um objeto carro utilizando o operador new
var camaro = new Carro('camaro');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment