odin-default-js-exercises/04_removeFromArray/removeFromArray.js

9 lines
249 B
JavaScript

const removeFromArray = function(arrayValues, valuesToRemove) {
const index = arrayValues.indexOf(valuesToRemove);
arrayValues.splice(index, 1);
return arrayValues;
}
// Do not edit below this line
module.exports = removeFromArray;