Posts by Wellington • 15 points
2 posts
-
1
votes1
answer39
viewsQ: Javascript- Syntax of classes
class Greeter { constructor(message) { this.greeting = message; /* this.greet = () => { return "Hello, " + this.greeting; --> Método dentro do construtor */ } greet() { return "Hello, " +…
-
0
votes1
answer24
viewsQ: Doubt when executing the function
const contatos = [ { nome: 'Alex Júnior', numero: '1234-5678' }, { nome: 'Carolina Moya', numero: '1234-6789' }, { nome: 'Fernando Jorge', numero: '12345-5567' } ]; const [Alex , Carol] = contatos;…