Q:
Answer & Explanation
Answer: B) 3
Explanation: The Math.floor() function in JavaScript is used to round off the number passed as parameter to its nearest integer in Downward direction of rounding i.g towards the lesser value.
Hence, math.floor(3.6) = 3.
View Answer
Report Error
Discuss