summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testDateNow.js
blob: 0a186caa2816155b3060c59a8f153af0b9c3d93b (plain)
1
2
3
4
5
6
7
8
9
10
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");