function that loops through and console.log's the numbers from 1 to 100, except multiples of three, log (without quotes) "VERY GOOD" instead of the number, for the multiples of five, log (without quotes) "SUPER AWESOME". For numbe
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
//Write a function that loops through and console.log's the numbers from 1 to 100, except multiples of three, log (without quotes) "VERY GOOD" instead of the number, for the multiples of five, log (without quotes) "SUPER AWESOME". For numbers which are multiples of both three and five, log (without quotes) "VERY GOOD SUPER AWESOME" Console log out:
1
2
VERY GOOD
4
SUPER AWESOME
VERY GOOD
7
8
VERY GOOD
SUPER AWESOME
11
VERY GOOD
13
14
VERY GOOD SUPER AWESOME
16
17
VERY GOOD
19
SUPER AWESOME
VERY GOOD
22
23
VERY GOOD
SUPER AWESOME
26
VERY GOOD
28
29
VERY GOOD SUPER AWESOME
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images