DEV Community

Discussion on: A Step-By-Step Guide to Create your First API with Node and Express

Collapse
 
delc82 profile image
dleon • Edited

Awesome article, just one thing, const bookList should be let because it is being assigned a new array when a book is deleted.

Collapse
 
gaelgthomas profile image
Gaël Thomas

Thank you! 👍😀
Good point, I did it on GitHub, but I forgot to change it in the article. I updated it!

Collapse
 
razbakov profile image
Aleksey Razbakov

It should be const because Array is an object and reference to the object is not changed.
Read more here