Supprimer les chaînes vides ou blancs d'espace du tableau javascript

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