scrimba
Bootcamp code reviews
πŸ‘©πŸΌβ€πŸ« Review of Solo Project - Restaurant Ordering app - by Idris (theidriselijah#1772)
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

πŸ‘©πŸΌβ€πŸ« Review of Solo Project - Restaurant Ordering app - by Idris (theidriselijah#1772)
AboutCommentsNotes
πŸ‘©πŸΌβ€πŸ« Review of Solo Project - Restaurant Ordering app - by Idris (theidriselijah#1772)
Expand for more info
data.js
run
preview
console
export 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?
-12:34