Test case details

Preparation Code

<script> var bitround = function(x) {   return x | 0; } </script>

Test cases

Test #1

Math.floor(89.938 / 293.3); Math.floor(83784 / 9289.2); Math.floor(7 / 60);

Test #2

Math.round(89.938 / 293.3); Math.round(83784 / 9289.2); Math.round(7 / 60);

Test #3

bitround(89.938 / 293.3); bitround(83784 / 9289.2); bitround(7 / 60);

Test #4

89.938 / 293.3 | 0; 83784 / 9289.2 | 0; 7 / 60 | 0;

Test #5

89.938 / 293.3 >> 0; 83784 / 9289.2 >> 0; 7 / 60 >> 0;