7

//I find a couple beers after hours relaxes the mind enough to work through the problem. aka The Ballmer Peak.

while(stuck == true) {
if(time < endDay) {
console.log("Keep working");
} else if(time > endDay && beers < 2) {
beers ++;
} else if(time > endDay && beers >= 2) {
stuck = false;
}
}

Comments
Add Comment