Skip to content

noSparseArray (since v1.0.0)

Diagnostic Category: lint/suspicious/noSparseArray

Sources:

Disallow sparse arrays

[1,,2]
suspicious/noSparseArray.js:1:1 lint/suspicious/noSparseArray  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━

   This array contains an empty slot.
  
  > 1 │ [1,,2]
   ^^^^^^
    2 │ 
  
   Unsafe fix: Replace hole with undefined
  
    1 │ [1,·undefined,2]
     ++++++++++