15.9.4.4-0-3.js (317B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-date.now 6 description: Date.now must exist as a function 7 ---*/ 8 9 var fun = Date.now; 10 11 assert.sameValue(typeof(fun), "function", 'typeof (fun)'); 12 13 reportCompare(0, 0);