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;
@GustavoNovaisR
Copy link

TypeError: Cannot read property 'juros' of undefined

deu erro

@guibranco
Copy link
Author

É Juros e não juros

@GustavoNovaisR
Copy link

desculpe eu estar sendo chato , mas continua com o mesmo erro
const Custo= require('./teste.js')
console.log(Custo(1, 'Gustavo'))
console.log(Custo(1,'Gustavo').Juros(5))
resposta:

console.log(Custo(1,'Gustavo').Juros(5))
TypeError: Cannot read property 'Juros' of undefined

node -v
v13.9.0

@guibranco
Copy link
Author

Corrigi!

@guibranco
Copy link
Author

const Custo = require('./custo.js');

const c = new Custo(1, 'Gustavo');
console.log(c);
c.juros(5);
console.log(c);

@guibranco
Copy link
Author

image

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