Question: It has to be java script * /** write a function that receives a number as its argument; if the number is divisible by 3,
It has to be java script 
* /** write a function that receives a number as its argument; if the number is divisible by 3, the function should return fizi; if the number is divisible by 5, the function should return buzz ; if the number is divisible by 3 and 5, the function should return "fizzbuzz ; if the value was provided was a number but doesn't match any of those criteria, return the number as is. if no number was provided or if the value provided wasn't a number (hint: typeof), return false */ function fizzBuzz(num) { * }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
