S9.3.1_A22.js (515B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: "The MV of DecimalDigit ::: 6 or of HexDigit ::: 6 is 6" 6 es5id: 9.3.1_A22 7 description: Compare Number('0x6') and Number('0X6') with 6 8 ---*/ 9 assert.sameValue(Number("6"), 6, 'Number("6") must return 6'); 10 assert.sameValue(+("0x6"), 6, 'The value of `+("0x6")` is expected to be 6'); 11 assert.sameValue(Number("0X6"), 6, 'Number("0X6") must return 6'); 12 13 reportCompare(0, 0);