What is the output of the following code?
console.log(Math.floor(4.7));
4.7
5
4
5.3
The Math.floor() function is used to round a number down to the nearest integer. In this case, Math.floor(4.7) will output 4.
27 / 32