Example 1: Javascript remove empty elements from array
var colors=["red","blue",,null,undefined,,"green"];
var realColors = colors.filter(function (e) {return e != null;});
console.log(realColors);
Example 2: remove empty values from array javascript
var array = [0, 1, null, 2, "", 3, undefined, 3,,,,,, 4,, 4,, 5,, 6,,,,];
var filtered = array.filter(function (el) {
return el != null;
});
console.log(filtered);
Example 3: js filter to remove empty string in array.
var s = [ '1,201,karthikeyan,K201,HELPER,[email protected],8248606269,7/14/2017,45680,TN-KAR24,8,800,1000,200,300,Karthikeyan,11/24/2017,Karthikeyan,11/24/2017,AVAILABLE\r',
'' ]
var newArr = s.filter(function(entry) { return entry.trim() != ''; })
console.log(newArr);