trim array javascript and check if empty code example
Example: Javascript remove empty elements from array
var colors=["red","blue",,null,undefined,,"green"];
//remove null and undefined elements from colors
var realColors = colors.filter(function (e) {return e != null;});
console.log(realColors);