blob: 7f17a75fb2686309fa8485dc641b3bd71bb50c10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-date.now
description: Date.now - returns number
---*/
assert.sameValue(typeof Date.now(), "number", 'typeof Date.now()');
reportCompare(0, 0);
|