Tell us what’s happening:
Describe your issue in detail here.
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(newarr,bookName) {
newarr = [...bookList]
newarr.push(bookName);
return newarr;
// Change code above this line
}
console.log (add());
// Change code below this line
function remove(newarr,bookName) {
newarr = [...bookList]
const book_index = newarr.indexOf(bookName);
if (book_index >= 0) {
newarr.splice(book_index, 1);
return newarr;
// Change code above this line
}
console.log(remove())
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36
Challenge: Functional Programming - Refactor Global Variables Out of Functions
Link to the challenge: