Tell us what’s happening:
Describe your issue in detail here.
Even though the function remove is correct but still its not passing the test, kindly help on this
Your code so far
// The global variable
const bookList = ["The Hound of the Baskervilles", "On The Electrodynamics of Moving Bodies", "Philosophiæ Naturalis Principia Mathematica", "Disquisitiones Arithmeticae"];
// Change code below this line
function add(arr,bookName) {
arr.push(bookName);
return arr;
// Change code above this line
}
// Change code below this line
function remove(arr,bookName) {
const book_index = arr.indexOf(bookName);
if (book_index >= 0) {
arr.splice(book_index,1);
console.log(arr)
return arr;
// Change code above this line
}
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36
Challenge: Functional Programming - Refactor Global Variables Out of Functions
Link to the challenge: