negative modulo (v13)

Revision 13 of this benchmark created on


Preparation HTML

<script>
Application = {};
Application.Utils = {};

Application.Utils.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
Application.Utils.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.