Javascript beginner here, I keep getting a wrong answer to this question:
"First, figure out if we have enough slices now. Use a comparison operator to figure out if there are enough. Assign the result to the enoughSlicesNow variable."
//Variables are below//
var cakes = 5;
var slicesPerCake = 6;
var attendees = 60;
var bakers = 3;
var cakeBakingTime = 1;
var hoursLeftUntilParty = 5;
This is what I tried but it will not accept:
(cakes * slicesPerCake)>= attendees
var enoughSlicesNow = false
falsetoenoughSlicesNow, not the result of the comparison.