negative modulo (v2)

Revision 2 of this benchmark created by Stuart Rutter on


Preparation HTML

<script>
Number.prototype.mod = function (n) {
	return ((this % 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(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.