In the following Express route stack - which handler will be called for 'GET /item/23'? app.get('/' - routes.index ); app.get('/item' - routes.item ); app.get('/item/:id' - routes.id ); app.post('/item/:id' - routes.post );

🎲 Try a Random Question  |  Total Questions in Quiz: 103  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Node.js Fundamentals Test — practice the complete quiz, review flashcards, or try a random question.


In the following Express route stack - which handler will be called for 'GET /item/23'? app.get('/' - routes.index ); app.get('/item' - routes.item ); app.get('/item/:id' - routes.id ); app.post('/item/:id' - routes.post );