tor-browser

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

S9.3.1_A12.js (669B)


      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_A12
      9 description: >
     10    Compare Number('12345e6') with +('12345')*1e1,  and
     11    Number('12345e-6') !== Number('12345')*1e-6
     12 ---*/
     13 assert.sameValue(Number("12345e6"), 12345000000, 'Number("12345e6") must return 12345000000');
     14 assert.sameValue(Number("12345e-6"), 0.012345, 'Number("12345e-6") must return 0.012345');
     15 
     16 reportCompare(0, 0);