tor-browser

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

S9.3.1_A7.js (657B)


      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. DecimalDigits
      7    is the MV of the first DecimalDigits plus the MV of the second DecimalDigits times
      8    10<sup><small>-n</small></sup>, where n is the number of characters in the second DecimalDigits
      9 es5id: 9.3.1_A7
     10 description: Compare Number('1234.5678') with Number('1234')+(+('5678')*1e-4)
     11 ---*/
     12 assert.sameValue(
     13  Number("1234.5678"),
     14  1234.5678,
     15  'Number("1234.5678") must return Number("1234") + (+("5678") * 1e-4)'
     16 );
     17 
     18 reportCompare(0, 0);