output of math.floor(7);
Answers
Answered by
0
Answer:
floor() The Math. floor() function returns the largest integer less than or equal to a given number.
Hope it helps.
Please follow.
Please thanks.
Answered by
1
Explanation:
The Math.floor() function returns the largest integer less than or equal to a given number.
Because floor() is a static method of Math, you always use it as Math.floor(), rather than as a method of a Math object you created (Math is not a constructor).
Similar questions