scrimba
Note at 0:40
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 0:40
AboutCommentsNotes
Note at 0:40
Expand for more info
index.js
run
preview
console
/* Totally Not Another FizzBuzz 

Scrimba CEO Per Borgen wants you to write a program to grant special bonuses to all his employees based on their employee ID numbers!

Scrimba has 100 employees and their employee ID numbers range from 1 - 100. If the employee's ID number is:

Divisible by 3 - Vacation!
Divisible by 5 - $100,000 bonus!
Divisible by both 3 and 5 - JACKPOT! 1 Million and a Yacht!
Not divisible by 3 or 5 - :(

Write a program to loop through all the ID numbers and print their prize.
Your function's output should look something like this:

1 - :(
2 - :(
3 - Vacation!
4 - :(
5 - $100,000 bonus!
*/

function awardBonuses(){
for(let i = 1; i <= 100; i++) {

if(i % 3 === 0 && i % 5 === 0) {
console.log(`${i}: JACKPOT! 1 Million and a Yacht!`);
} else if(i % 3 === 0) {
console.log(`${i}: Vacation!`);
} else if(i % 5 === 0) {
console.log(`${i}: $100,000 bonus!`)
} else if(!i % 3 === 0 || !i % 5 === 0) {
console.log(`${i}: :(`);
}
}
}

awardBonuses();
Console
"1: :("
,
"2: :("
,
"3: Vacation!"
,
"4: :("
,
"5: $100,000 bonus!"
,
"6: Vacation!"
,
"7: :("
,
"8: :("
,
"9: Vacation!"
,
"10: $100,000 bonus!"
,
"11: :("
,
"12: Vacation!"
,
"13: :("
,
"14: :("
,
"15: JACKPOT! 1 Million and a Yacht!"
,
"16: :("
,
"17: :("
,
"18: Vacation!"
,
"19: :("
,
"20: $100,000 bonus!"
,
"21: Vacation!"
,
"22: :("
,
"23: :("
,
"24: Vacation!"
,
"25: $100,000 bonus!"
,
"26: :("
,
"27: Vacation!"
,
"28: :("
,
"29: :("
,
"30: JACKPOT! 1 Million and a Yacht!"
,
"31: :("
,
"32: :("
,
"33: Vacation!"
,
"34: :("
,
"35: $100,000 bonus!"
,
"36: Vacation!"
,
"37: :("
,
"38: :("
,
"39: Vacation!"
,
"40: $100,000 bonus!"
,
"41: :("
,
"42: Vacation!"
,
"43: :("
,
"44: :("
,
"45: JACKPOT! 1 Million and a Yacht!"
,
"46: :("
,
"47: :("
,
"48: Vacation!"
,
"49: :("
,
"50: $100,000 bonus!"
,
"51: Vacation!"
,
"52: :("
,
"53: :("
,
"54: Vacation!"
,
"55: $100,000 bonus!"
,
"56: :("
,
"57: Vacation!"
,
"58: :("
,
"59: :("
,
"60: JACKPOT! 1 Million and a Yacht!"
,
"61: :("
,
"62: :("
,
"63: Vacation!"
,
"64: :("
,
"65: $100,000 bonus!"
,
"66: Vacation!"
,
"67: :("
,
"68: :("
,
"69: Vacation!"
,
"70: $100,000 bonus!"
,
"71: :("
,
"72: Vacation!"
,
"73: :("
,
"74: :("
,
"75: JACKPOT! 1 Million and a Yacht!"
,
"76: :("
,
"77: :("
,
"78: Vacation!"
,
"79: :("
,
"80: $100,000 bonus!"
,
"81: Vacation!"
,
"82: :("
,
"83: :("
,
"84: Vacation!"
,
"85: $100,000 bonus!"
,
"86: :("
,
"87: Vacation!"
,
"88: :("
,
"89: :("
,
"90: JACKPOT! 1 Million and a Yacht!"
,
"91: :("
,
"92: :("
,
"93: Vacation!"
,
"94: :("
,
"95: $100,000 bonus!"
,
"96: Vacation!"
,
"97: :("
,
"98: :("
,
"99: Vacation!"
,
"100: $100,000 bonus!"
,
/index.html
LIVE