Last active
April 10, 2020 17:35
-
-
Save guibranco/4a6df5ef7993c8ec5e53a18109cf13cf to your computer and use it in GitHub Desktop.
Custo.js - NodeJS Brasil - Facebook - https://www.facebook.com/groups/nodejsbrasil/permalink/1888080197991925/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
É Juros e não juros
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
Corrigi!
const Custo = require('./custo.js');
const c = new Custo(1, 'Gustavo');
console.log(c);
c.juros(5);
console.log(c);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
TypeError: Cannot read property 'juros' of undefined
deu erro