modConstDoubles.js (91B)
1 function f() { 2 var x = 2.6; 3 var y = 2.1; 4 return x % y; 5 } 6 assertEq(f(), 0.5);