Skip to content

Instantly share code, notes, and snippets.

@pmatos2000
Created May 29, 2022 20:48
Show Gist options
  • Save pmatos2000/7f3737568bdb44508efba3ad8bd0a216 to your computer and use it in GitHub Desktop.
Save pmatos2000/7f3737568bdb44508efba3ad8bd0a216 to your computer and use it in GitHub Desktop.
const vetor = [1,2,3];
const vetorModificado = vetor
.map(elemento => {
console.log(elemento);
return elemento;
})
.map(elemento => {
const novoElemento = 2 * elemento;
console.log(novoElemento);
return novoElemento;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment