Created
December 3, 2017 15:19
-
-
Save MicroBenz/8089dd8667979d246c5fca47246f9e69 to your computer and use it in GitHub Desktop.
Recompose
This file contains 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 names = ['John', 'Jack', 'Rose', 'Alex', 'Mercy', 'Emma', 'Peter'] | |
const fourLengthNames = names.filter(name => name.length === 4); | |
const greetingEveryone = names.map(name => `Hello ${name}`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment