How do I remove empty elements from an array in JavaScript?
Is there a straightforward way, or do I need to loop through it and remove them manually?
Simple ES6
['a','b','',,,'w','b'].filter(v => v);