Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created February 2, 2020 18:37
Show Gist options
  • Save jsmanifest/4ce3dfe921fc7bc1e8cdc1a133ab0cbc to your computer and use it in GitHub Desktop.
Save jsmanifest/4ce3dfe921fc7bc1e8cdc1a133ab0cbc to your computer and use it in GitHub Desktop.
function prefixWordWithUnderscore(word) {
return `_${word}`
}
const words = ['coffee', 'apple', 'orange', 'phone', 'starbucks']
const prefixedWords = words.map(prefixWordWithUnderscore)
// result: ["_coffee", "_apple", "_orange", "_phone", "_starbucks"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment