Skip to content

Instantly share code, notes, and snippets.

@maxclaus
Last active August 29, 2015 13:55
Show Gist options
  • Save maxclaus/8788683 to your computer and use it in GitHub Desktop.
Save maxclaus/8788683 to your computer and use it in GitHub Desktop.
function Produto(nome, qtd){
var self = this;
self.Nome = nome || '';
self.Qtd = qtd || 0;
return self;
}
var arroz = new Produto("Arroz", 10);
var feijao = new Produto("Feijao", 15);
var produtos = [ arroz,feijao ];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment