Created
April 3, 2018 15:32
-
-
Save LearningMaterial/6b5f82242ddc736b5b83e7458db3ed24 to your computer and use it in GitHub Desktop.
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 names = ["sakib", "tamim", "Riad"]; | |
const fullNames = names.map(name => { | |
return `${name}`; | |
}); | |
console.log(fullNames); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment