Posts by Cássio Cândido • 23 points
1 post
-
-2
votes1
answer84
viewsQ: Why, when not using "this", the method does not reflect changes made to the object?
class Endereco { constructor(Rua, Cidade, CEP) { this.Rua = Rua; this.Cidade = Cidade; this.CEP = CEP; this.exibirEndereco = function() { console.log(`Endereço: Rua ${Rua}, Cidade de ${Cidade}, CEP…