blob: 0a186caa2816155b3060c59a8f153af0b9c3d93b [file] [log] [blame]
function testDateNow() {
// Accessing global.Date for the first time will change the global shape,
// so do it before the loop starts; otherwise we have to loop an extra time
// to pick things up.
var time = Date.now();
for (var j = 0; j < 9; ++j)
time = Date.now();
return "ok";
}
assertEq(testDateNow(), "ok");