Hapus string kosong atau putih dari array javascript

// Example 4
arr = arr.filter(entry => entry.trim() != '');
Sleepy Starling