scrimba
Note at 1:19
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

Note at 1:19
AboutCommentsNotes
Note at 1:19
Expand for more info
index.js
run
preview
console
// Review Challenge 4: Taco Tray
// - Help our chef fill a tray with tacos!

function getRandomNumberOfTacos() {
/*
Make this function return an array that contains
between one and ten taco emojis 🌮
Use the following JavaScript concepts:
- Math.random()
- Math.floor()
- new Array()
- Array.fill()
*/
// let x = Math.random() * 10;
// console.log(Math.floor(x));

// let randomNumber = Math.floor(Math.random()*10)+1;
// console.log(randomNumber)
// const randomNumber = Math.floor(Math.random()*10+1);
// console.log(randomNumber);

// const tacos = new Array("Banana", "Orange", "Apple", "Mango");
// tacos.fill("Kiwi", 2, 4)
// console.log(tacos)

// const tacos = new Array(3);
// tacos.fill('🌮');
// console.log(tacos);

const tray = new Array(Math.floor(Math.random()*10)+1).fill('🌮').join(' ');

return [tray]; // replace this empty tray array

}

function putTacosOnTray() {
return getRandomNumberOfTacos().map(function (taco) {
return `<div class="taco">${taco}</div>`
}).join('')
}

document.getElementById('tray').innerHTML = putTacosOnTray()
Console
/index.html
LIVE