Skip to content

Instantly share code, notes, and snippets.

@matheus-rossi
Created July 10, 2018 15:48
Show Gist options
  • Save matheus-rossi/5fc0b2b9369cc2106359d85e77120fbb to your computer and use it in GitHub Desktop.
Save matheus-rossi/5fc0b2b9369cc2106359d85e77120fbb to your computer and use it in GitHub Desktop.
// Atualizando item no array (.map)
const numeros = [1, 2, 3]
function dobrar (num) {
return num * 2
}
const dobrarEs6 = num => num *2
const numerosVezesDois = numeros.map(dobrarEs6)
console.log(numerosVezesDois) // [ 2, 4, 6 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment