tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

S9.3.1_A8.js (639B)


      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 StrUnsignedDecimalLiteral::: DecimalDigits. ExponentPart
      7    is the MV of DecimalDigits times 10<sup><small>e</small></sup> , where e is the MV of ExponentPart
      8 es5id: 9.3.1_A8
      9 description: >
     10    Compare Number('1234e5') and Number('1234.e5') with
     11    Number('1234')*1e5
     12 ---*/
     13 assert.sameValue(Number("1234e5"), 123400000, 'Number("1234e5") must return 123400000');
     14 assert.sameValue(Number("1234.e5"), 123400000, 'Number("1234.e5") must return 123400000');
     15 
     16 reportCompare(0, 0);