MCQ
Which method is used to round a number down to the nearest integer?
JavaScript
A Math.ceil()
B Math.floor()
C Math.round()
D Math.trunc()
Explanation

Math.floor() returns the largest integer less than or equal to the number.