Supprimer la chaîne du tableau en js

// if you want to remove ALL occurences
let arr = ['A', 'B', 'C'];
arr = arr.filter(e => e !== 'B'); // will return ['A', 'C']

// if you want to remove ONLY 1st occurence
t = ['A', 'B', 'C', 'B'];
t.splice(t.indexOf('B'), 1); // will return ['B'] and t is now equal to ['A', 'C', 'B']
Anxious Alligator