Skip to content

Instantly share code, notes, and snippets.

@guibranco
Last active April 10, 2020 17:35
Show Gist options
  • Save guibranco/4a6df5ef7993c8ec5e53a18109cf13cf to your computer and use it in GitHub Desktop.
Save guibranco/4a6df5ef7993c8ec5e53a18109cf13cf to your computer and use it in GitHub Desktop.
function Custo(valor, nome){
this.valor = valor;
this.nome = nome;
}
Custo.prototype.juros = function(juros) {
//isso tá errado, pq isso não é juros né...
this.valor += juros;
return this.valor;
}
Custo.prototype.toString = function(){
return this.nome + " pagará " + this.valor;
}
Custo.prototype.inspect = function(){
return this.toString();
}
module.exports = Custo;
@guibranco
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment