Implementing remainder operation according to ECMA. Checking that implementations of other arithmetic operations already conform to ECMA and removing corresponding TODOs from them.
This commit is contained in:
@@ -29,3 +29,6 @@ assert((number - 9) == 72);
|
||||
assert((number * 10) == 810);
|
||||
assert((number / 9) == 9);
|
||||
assert((number % 79) == 2);
|
||||
|
||||
var num1 = 1234567, num2 = 1234000;
|
||||
assert((num1 % num2) == 567);
|
||||
|
||||
Reference in New Issue
Block a user