Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript REST APIs with Express Getting to Know REST APIs GET a Quote, GET all Quotes

codingchewie
codingchewie
8,764 Points

Why does a strict comparison operator not work here?

After modifying the code from the video to:

app.get('/quotes/:id', (req, res) => res.status(200).json(data.records.find((quote) => quote.id === req.params.id)))

the strict comparison operator will not return anything if I pass http://localhost:3000/quotes/3406 in the browser or in Postman.

When I modify the line to:

app.get('/quotes/:id', (req, res) => res.status(200).json(data.records.find((quote) => quote.id == req.params.id)))

I'm able to get JSON in Postman and the browser. I know this is a stripped down approach but I'm curious why doesn't the strict comparison work here?

Steffeni Veren
Steffeni Veren
7,259 Points

Are they two different types? Strict compares values AND types where as == will coerce the types and match if they have the same value.

2 Answers

Steven Parker
Steven Parker
229,786 Points

As Steffeni suggested, if one value is a string and the other is a number, the standard comparison will apply conversion for you. The strict comparison operator would consider them to be different no matter what they contain.

To expand further for anyone that runs into this issue or has this question, check this site https://en.wikibooks.org/wiki/Computer_Programming/Type_conversion

request.params.id is a string type, and the quotes.id is a number type something to watch out for when coding. I have banged my head against the wall a few times because of this.