Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created April 3, 2018 15:32
Show Gist options
  • Save LearningMaterial/6b5f82242ddc736b5b83e7458db3ed24 to your computer and use it in GitHub Desktop.
Save LearningMaterial/6b5f82242ddc736b5b83e7458db3ed24 to your computer and use it in GitHub Desktop.
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