summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Number/S15.7.1.1_A2.js
blob: 33366b121ccfe26a5f239ddc03e173f658241d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Number() returns +0
es5id: 15.7.1.1_A2
description: Call Number() and check result
---*/
assert.sameValue(typeof Number(), "number", 'The value of `typeof Number()` is expected to be "number"');
assert.sameValue(Number(), 0, 'Number() must return 0');

reportCompare(0, 0);