scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Deploy your Solo Project
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
Deploy your Solo Project
Expand for more info
data.js
run
preview
console
const menuArray = [
{
name: "Pizza",
ingredients: ["pepperoni", "mushrom", "mozarella"],
id: 0,
price: 14,
emoji: "🍕"
},
{
name: "Hamburger",
ingredients: ["beef", "cheese", "lettuce"],
price: 12,
emoji: "🍔",
id: 1
},
{
name: "Beer",
ingredients: ["grain, hops, yeast, water"],
price: 12,
emoji: "🍺",
id: 2
}
]
Console
/index.html?
-0:44