Skip to content
Advertisement

How to get index of an empty element of an array?

I have a JavaScript array with some empty (maybe null or undefined) elements. I need to find those empty indexes (1 and 3).

JavaScript

But my solution is not working:

JavaScript

Snippet:

JavaScript

Advertisement

Answer

Use a blank string to compare to get the answer you desire. If you also want to check for undefined you can use logical or to check both of them.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement