You are on page 1of 1

// Import stylesheets

import './style.css';
const fruits = ['apple', 'kiwwi', 'mango'];
// Write Javascript code!
const ingrediant = [
{
quantity: 1,
unit: '',
description: 'tbsp. canola or olive oil',
},
{
quantity: 0.5,
unit: 'cup',
description: 'chopped sweet onion',
},
{
quantity: 3,
unit: 'cups',
description: 'diced fresh red yellow and green bell peppers',
},

{
quantity: 1,
unit: '',
description: 'tube refrigerated pizza dough',
},
{
quantity: 0.5,
unit: 'cup',
description: 'salsa',
},
{
quantity: 2,
unit: 'cups',
description: 'sargento chefstyle shredded pepper jack cheese',
},
{
quantity: null,
unit: '',
description: 'Chopped cilantro or dried oregano',
},
];
const appDiv = document.getElementById('app');

ingrediant.forEach(function (item) {
appDiv.innerHTML += `<h1>${item.description}</h1>`;
});

You might also like