Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created April 3, 2018 15:26
Show Gist options
  • Save LearningMaterial/f533e3bfe5a22a81e90191a2a014a8c9 to your computer and use it in GitHub Desktop.
Save LearningMaterial/f533e3bfe5a22a81e90191a2a014a8c9 to your computer and use it in GitHub Desktop.
const names = ["sakib", "tamim", "Riad"];
const fullNames = names.map(function(name) {
return `${name}`;
});
console.log(fullNames);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment