Can anyone help me understand what an empty
means in a JS array?
I just noticed an array in chrome devtools with an empty value. I created the one below, and by putting two commas together I can produce an empty
(see below). Granted, I'm relatively new to JS, but since empty
isn't a JS primitive I would have expected either:
a) a null
or undefine3d
value for a[3]
b) a.length
to be 4
What does empty
mean?