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

/*---
info: "The MV of DecimalDigit ::: 0 or of HexDigit ::: 0 is 0"
es5id: 9.3.1_A16
description: Compare Number('0x0') and Number('0X0') with 0
---*/
assert.sameValue(Number("0"), 0, 'Number("0") must return 0');
assert.sameValue(+("0x0"), 0, 'The value of `+("0x0")` is expected to be 0');
assert.sameValue(Number("0X0"), 0, 'Number("0X0") must return 0');

reportCompare(0, 0);