boxedObjectRecord.baseline 311 B

123456789101112131415161718
  1. typeof (xb): object
  2. xb === yb: true
  3. xb !== zb: true
  4. xb == true: true
  5. xb === true: false
  6. xb.foob: 3
  7. typeof (xn): object
  8. xn === yn: true
  9. xn !== zn: true
  10. xn == 5: true
  11. xn === 5: false
  12. xn.foon: 3
  13. typeof (xs): object
  14. xs === ys: true
  15. xs !== zs: true
  16. xs == 'bob': true
  17. xs === 'bob': false
  18. xs.foos: 3