Test case details

Preparation Code

var a = 89.938 / 293.3;     var b = 83784 / 9289.2;     var c = 7 / 60;

Test cases

Test #1

Math.floor(a); Math.floor(b); Math.floor(c);

Test #2

a | 0; b | 0; c | 0;

Test #3

a >> 1; b >> 1; c >> 1;

Test #4

~~a; ~~b; ~~c;