tor-browser

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

bigint-and-incomparable-primitive.js (1385B)


      1 // Copyright (C) 2017 Josh Wolfe. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 description: Strict inequality comparison of BigInt and miscellaneous primitive values
      5 esid: sec-strict-equality-comparison
      6 info: |
      7  1. If Type(x) is different from Type(y), return false.
      8 
      9 features: [BigInt, Symbol]
     10 ---*/
     11 assert.sameValue(0n !== undefined, true, 'The result of (0n !== undefined) is true');
     12 assert.sameValue(undefined !== 0n, true, 'The result of (undefined !== 0n) is true');
     13 assert.sameValue(1n !== undefined, true, 'The result of (1n !== undefined) is true');
     14 assert.sameValue(undefined !== 1n, true, 'The result of (undefined !== 1n) is true');
     15 assert.sameValue(0n !== null, true, 'The result of (0n !== null) is true');
     16 assert.sameValue(null !== 0n, true, 'The result of (null !== 0n) is true');
     17 assert.sameValue(1n !== null, true, 'The result of (1n !== null) is true');
     18 assert.sameValue(null !== 1n, true, 'The result of (null !== 1n) is true');
     19 assert.sameValue(0n !== Symbol('1'), true, 'The result of (0n !== Symbol("1")) is true');
     20 assert.sameValue(Symbol('1') !== 0n, true, 'The result of (Symbol("1") !== 0n) is true');
     21 assert.sameValue(1n !== Symbol('1'), true, 'The result of (1n !== Symbol("1")) is true');
     22 assert.sameValue(Symbol('1') !== 1n, true, 'The result of (Symbol("1") !== 1n) is true');
     23 
     24 reportCompare(0, 0);