ladybird/Libraries/LibJS/Tests/modulo-basic.js
Brian Gianforcaro bc40908d32 LibJS: Use the native assert() implementation now avaiable in 'js -t'
Switch the LibJS test suite to use the native assert implementation
surfaced inside the js repl when it's launched in test mode.
2020-04-05 15:28:45 +02:00

20 lines
514 B
JavaScript

try {
assert(10 % 3 === 1);
assert(10.5 % 2.5 === 0.5);
assert(-0.99 % 0.99 === -0);
// Examples form MDN:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators
assert(12 % 5 === 2);
assert(-1 % 2 === -1);
assert(1 % -2 === 1);
assert(isNaN(NaN % 2));
assert(1 % 2 === 1);
assert(2 % 3 === 2);
assert(-4 % 2 === -0);
assert(5.5 % 2 === 1.5);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}