Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Created November 11, 2017 13:34
Show Gist options
  • Save aderaaij/20b6668f4c742a6c37c0c44381d3e108 to your computer and use it in GitHub Desktop.
Save aderaaij/20b6668f4c742a6c37c0c44381d3e108 to your computer and use it in GitHub Desktop.
Simle Arrow Function examples
const names = ['michelangelo', 'donatello', 'leonardo'];
const fullNames = names.map(name => `${name} turtle`);
console.log(fullNames);
const sayMyName = name => alert(`hi ${name}`)
sayMyName('Raphaello');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment