I am trying to remove an element in an array in a forEach loop, but am having trouble with the standard solutions I\'ve seen.
forEach
This is what I\'m current
You could also use indexOf instead to do this
var i = review.indexOf('\u2022 \u2022 \u2022'); if (i !== -1) review.splice(i,1);