Skip to content

Instantly share code, notes, and snippets.

@rbenvenuto
Created March 23, 2019 02:48
Show Gist options
  • Save rbenvenuto/206c1e079d5f46217ccc8f66ee1569e9 to your computer and use it in GitHub Desktop.
Save rbenvenuto/206c1e079d5f46217ccc8f66ee1569e9 to your computer and use it in GitHub Desktop.
const ItoupavaList = [
'Itoupavazinha',
'Central',
'Norte',
'Velha'
]
ItoupavaList.map((itoupava, index) => {
return index === 0 ?
console.log(ItoupavaList[index]) :
console.log(`Itoupava ${itoupava}`)
})
// Itoupavazinha
// Itoupava Central
// Itoupava Norte
// Itoupava Velha
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment