tor-browser

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

S9.2_A5_T3.js (582B)


      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    Result of boolean conversion from nonempty string value (length is not
      7    zero) is true; from empty String (length is zero) is false
      8 esid: sec-toboolean
      9 description: Any nonempty string convert to Boolean by explicit transformation
     10 ---*/
     11 assert.sameValue(Boolean(" "), true, 'Boolean(" ") must return true');
     12 assert.sameValue(Boolean("Nonempty String"), true, 'Boolean("Nonempty String") must return true');
     13 
     14 reportCompare(0, 0);