toLocaleString.baseline 952 B

12345678910111213141516171819202122232425262728293031323334353637
  1. 0. Non Object
  2. 1 -->
  3. NaN -->
  4. true -->
  5. TypeError : Array.prototype.toLocaleString: 'this' is null or undefined
  6. TypeError : Array.prototype.toLocaleString: 'this' is null or undefined
  7. 1. Object, length not uint32
  8. length: true -->
  9. length: abc -->
  10. length: 1.234 -->
  11. length: [object Object] -->
  12. 2. Array: normal
  13. 0.00, 1.23, NaN, true, abc, [object Object], , 0.00, 1.00, 2.00
  14. 3. Array: element toLocaleString not callable
  15. TypeError : The value of the property 'toLocaleString' is not a Function object
  16. 4. Array: element toLocaleString
  17. 0.00, anObject, , , another Object, 1.00, a 3rd Object, 2.00
  18. 5. Object: normal
  19. 0.00, 1.23, NaN, true, abc, [object Object], , 0.00, 1.00, 2.00
  20. 6. Object: element toLocaleString not callable
  21. TypeError : The value of the property 'toLocaleString' is not a Function object
  22. 7. Object: element toLocaleString
  23. 0.00, anObject, , , another Object, 1.00, a 3rd Object, 2.00