Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Below is the function isDivBy3and5 please give answer in Javascript E) Write a function named fizz_buzz_and_fizzBuzz that accepts a number n and returns a list
Below is the function isDivBy3and5 please give answer in Javascript
E) Write a function named fizz_buzz_and_fizzBuzz that accepts a number n and returns a list of numbers 1 to n, where each number divisible by 3 is followed by the word fizz, each number divisible by 5 is followed by the word buzz, and each number divisible by both is followed by fizzBuzz. Use a while loop, and your function must call is DivBy3and5. This is a classification problem-- i.e., classify a number according to its properties. The best control structure for a classification problem is an else-if. Study this example: classify the state of water according to its temperature. Here's what the function should return (note the commas): fizz_buzz_and_fizzBuzz (20) = "3 fizz, 5 buzz, 6 fizz, 9 fizz, 10 buzz, 12 fizz, 15 fizzBuzz, 18 fizz, 20 buzz, " //Req. 2-C function isDivBy3and5(n) { if (n % 3 == 0 && n % 5 == 0) { return true; } else { return falseStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started