const review = ["a", "b", "c", "b", "a"]; review.forEach((item, index, arr) => { if (item === "a") { arr.splice(index, 1); } });