Same the solution but still wrong

idk why my solution doesn’t work

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

var filteredList=watchList.map(item=>({
  title:item['Title'],
  rating:item['imdbRating']
}));

filteredList = JSON.stringify(filteredList.filter(reight=>reight.rating>=8))

Link to the challenge:

What is the purpose of stringify here?

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.