negative modulo (v5)

Revision 5 of this benchmark created on


Preparation HTML

<script>
Number.prototype.mod = function (n) {
	return ((this % n) + n) % n;
}

window.mmod = function(n, m) {
	return ((m % n) + n) % n;
}

var n = 123;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
modulo prototype
n.mod(26);
ready
non prototype
mmod(n, 26);
ready

Revisions

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