Suppose, i have an array
const anArray = ['value 1', 'value 2', 'value 3', 'value 4', 'value 5'];
If i want to remove the value 3
from anArray
but don't know the position of that value in the array, how can i remove that?
Note: I'm a beginner in JavaScript