Skip to content

Instantly share code, notes, and snippets.

@RachelSa
Created June 3, 2017 17:29
Show Gist options
  • Save RachelSa/cd76aa8190df3e187a250d0cfaf77f8d to your computer and use it in GitHub Desktop.
Save RachelSa/cd76aa8190df3e187a250d0cfaf77f8d to your computer and use it in GitHub Desktop.
var exclaim = (string) => {return string + "!"}
var words = ["let's", "do", "this"]
console.log(words.map(exclaim))
//[ 'let\'s!', 'do!', 'this!' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment