scrimba
Frontend Career Path
Essential JavaScript concepts
Meme Picker
Aside: import the data
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Aside: import the data
Expand for more info
index.js
run
preview
console
const dinnerPartyGuests = [
'Elvis Presley',
'The Queen of England',
'Alan Turing',
'Nelson Mandela',
'Mahatma Gandhi',
'Aristotle',
'Albert Einstein'
]


console.log(dinnerPartyGuests)
Console
[
"Elvis Presley"
,
"The Queen of England"
,
"Alan Turing"
,
"Nelson Mandela"
,
"Mahatma Gandhi"
,
"Aristotle"
,
"Albert Einstein"
]
,
/index.html
-5:57