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

14 lines
205 B
JavaScript

const removeFromArray = function([x], [y]) {
let array = [x, y];
array.indexOf(0);
array.indexOf(1);
array.splice()
};
// Do not edit below this line
module.exports = removeFromArray;