Skip to content

Instantly share code, notes, and snippets.

@LeandroLS
Last active September 2, 2017 22:46
Show Gist options
  • Save LeandroLS/e7b978d8b9702acad358d77dca639f73 to your computer and use it in GitHub Desktop.
Save LeandroLS/e7b978d8b9702acad358d77dca639f73 to your computer and use it in GitHub Desktop.
arrow function js
//1ª maneira
listaDeNomes.forEach((item) => {
console.log(item);
})
//2ª maneira
listaDeNomes.forEach(item => console.log(item));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment