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

8 lines
174 B
JavaScript

const removeFromArray = function(input) {
let newString = input.slice().splice();
return newString;
}
// Do not edit below this line
module.exports = removeFromArray;