scrimba
Frontend Career Path
Essential JavaScript concepts
Twitter Clone
Aside: UUID
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: UUID
Expand for more info
index.js
run
preview
console
const cars = [
{
brand: 'Nissan',
model: 'Leaf',
price: 3000,
uuid: '4fb2b6b7-c7ee-4c80-8de1-390e89f43d7f'
},
{
brand: 'Toyota',
model: 'Prius',
price: 6000,
uuid: '82a13f62-d239-46a2-a94f-020189338e1a'
},
]
Console
/index.html
-7:26