Remove empty strings from array while keeping record Without Loop?

var arr = [“I”, “am”, “”, “still”, “here”, “”, “man”] // arr = [“I”, “am”, “”, “still”, “here”, “”, “man”] arr = arr.filter(Boolean) // arr = [“I”, “am”, “still”, “here”, “man”] filter documentation // arr = [“I”, “am”, “”, “still”, “here”, “”, “man”] arr = arr.filter(v=>v!=”); // arr = [“I”, “am”, “still”, “here”, “man”] Arrow … Read more