Skip to content

Instantly share code, notes, and snippets.

@fehmathais
Created July 7, 2020 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fehmathais/f81b96a28b2132835a3948b95107bde8 to your computer and use it in GitHub Desktop.
Save fehmathais/f81b96a28b2132835a3948b95107bde8 to your computer and use it in GitHub Desktop.
//objeto cachorro com função de latir
//contador 0 a 100 usando o loop "for"
var produto = {
nome: 'Serra elétrica',
preco: 21.09,
quantidade: 10,
comprar: function (quantidade) {
if (produto.quantidade > 0 && quantidade <= produto.quantidade) {
return produto.quantidade - quantidade;
} else {
return 'Não há quantidade disponível em estoque';
}
}
}
console.log(produto.comprar(9));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment