Test case details

Preparation Code

Test cases

Test #1

Math.floor("123"); Math.floor(83784 / 9289.2); Math.floor(7 / 60);

Test #2

Math.round("123"); Math.round(83784 / 9289.2); Math.round(7 / 60);

Test #3

parseInt("123"); parseInt(83784 / 9289.2); parseInt(7 / 60);

Test #4

"123" | 0; 83784 / 9289.2 | 0; 7 / 60 | 0;

Test #5

"123" >> 0; 83784 / 9289.2 >> 0; 7 / 60 >> 0;

Test #6

~~("123"); ~~(83784 / 9289.2); ~~(7 / 60);

Test #7

"123" << 0; 83784 / 9289.2 << 0; 7 / 60 << 0;

Test #8

parseInt("123", 10); parseInt(83784 / 9289.2, 10); parseInt(7 / 60, 10);