You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

falsy_array.js 143B

12345678910
  1. ({
  2. 'list': [
  3. ['', 'emptyString'],
  4. [[], 'emptyArray'],
  5. [0, 'zero'],
  6. [null, 'null'],
  7. [undefined, 'undefined'],
  8. [0/0, 'NaN']
  9. ]
  10. });