2
I have the following problem, given the following objs array, I would like to return the same array, but aged *2
const usuarios = [
{ nome: "Diego", idade: 23, senha: 123 },
{ nome: "Gabriel", idade: 15, senha : 123 },
{ nome: "Lucas", idade: 30, senha : 123 }
];
Another question, I can for example change the password of a certain user? as if in mysql you use a Where?
Can you explain better " age *2"? what do you mean by that?
– Sergio