Created
March 23, 2019 02:48
-
-
Save rbenvenuto/206c1e079d5f46217ccc8f66ee1569e9 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 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