valueof5.baseline 390 B

12345678910111213
  1. x.valueOf()
  2. x.valueOf.call(undefined)
  3. TypeError: Object.prototype.valueOf: 'this' is null or undefined
  4. x.valueOf.call(null)
  5. TypeError: Object.prototype.valueOf: 'this' is null or undefined
  6. x.valueOf.call()
  7. TypeError: Object.prototype.valueOf: 'this' is null or undefined
  8. typeof x.valueOf.call(true)
  9. object
  10. typeof x.valueOf.call(42)
  11. object
  12. typeof x.valueOf.call('Hello')
  13. object