TheOdinProject / curriculum

The open curriculum for learning web development
https://www.theodinproject.com/
Other
10.11k stars 13.54k forks source link

NodeJS Controllers : Fix code snippet function parameter #28961

Closed foxane closed 1 month ago

foxane commented 1 month ago

db.getAuthorById() will compare string to number Fixed using Number() on authorId

Because

db.getAuthorById() will compare string to number, resulting all request to /:authorId return 'Author not found' regardless the id

This PR

Issue

Closes #28956

Additional Information

Pull Request Requirements