scrimba
Note at 2:51
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 2:51
AboutCommentsNotes
Note at 2:51
Expand for more info
index.js
run
preview
console
function calcTotalCandies(children, candy) {
const oneChildCanEat = Math.floor(candy/children)
const totalCandiesEaten = oneChildCanEat * children
console.log(totalCandiesEaten)
}

calcTotalCandies(3, 10) // expected output: 9
calcTotalCandies(4, 20) // expected output: 20
calcTotalCandies(6, 25) // expected output: 24
Console
9
,
20
,
24
,
/index.html
LIVE