Last active
June 23, 2017 03:44
-
-
Save chriswrightdesign/4a4d1d498266d8c3535976a9feb14e1a to your computer and use it in GitHub Desktop.
Function to map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const superSize = value => `super ${value}; | |
animals.map(superSize); | |
// result: ['super dog', 'super cat', 'super bird']; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment