State the output of the following : a. Math.max (-14 , -15 ) ;
Answers
Answered by
0
Answer:
The function Math.max() does not work like that. It takes two (or more) integers and then returns the greater one. For example:
Math.max(3, 1, 2); // returns 3
Similar questions