DEV Community

Discussion on: 5 important JavaScript array methods

 
paul_mountney_24e4867f3d3 profile image
Paul Mountney

I figured it out, i was supposed to put the code:
const filteredBooks = books.filter(books => {
return books.writer === "Jeremiah";
});

console.log(filteredBooks)

at the end of my array, and i ran it through Nodejs

Thread Thread
 
marlonry profile image
marlonry

Awesome. Glad you got it!