S9.3.1_A15.js (473B)
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: | 6 The MV of SignedInteger ::: - DecimalDigits is the negative of the MV of 7 DecimalDigits 8 es5id: 9.3.1_A15 9 description: Compare -Number('1234567890') with ('-1234567890') 10 ---*/ 11 assert.sameValue( 12 +("-1234567890"), 13 -1234567890, 14 'The value of `+("-1234567890")` is expected to be -1234567890' 15 ); 16 17 reportCompare(0, 0);