Math.Floor vs ~~ (v12)

Revision 12 of this benchmark created on


Setup

var pi = 3.14;

Test runner

Ready to run.

Testing in
TestOps/sec
Math.floor
var final = Math.floor(pi);
ready
~~
var final = ~~pi;
ready
>> 0
var final = pi >> 0;
ready
Compared to Math.round
var final = Math.round(pi);
ready
Compared to Math.ceil
var final = Math.ceil(pi);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.