negative modulo (v11)

Revision 11 of this benchmark created on


Preparation HTML

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

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

var n = 123;
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
modulo prototype
n.mod(n, 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.