Question from the Node.js test

Given the following express server, what will the browser display if it requests the following URL: http://localhost:1337/api/character/2?

Expert

Considering the following express server :

const express = require('express');
const app = express();

let characters = [ {name:'Marty'}, {name:'Neo'}, {name:'Anakin'} ];

app.use('/api/character/:id', (req, res) => {
  app.locals.currentTime = Date.now();
});

app.get('/api/character/:id', (req, res) => {
  let character = characters[ Number(req.params.id)-1 ] || {};
  res
    .status(200)
    .send(`Hey! I'm ${character.name} and spawned at ${new Date(app.locals.currentTime)}`);
});

app.listen(1337);

What will the browser display if it requests the following URL:http://localhost:1337/api/character/2?

Author: BenjaminStatus: Published(Update)Question passed 63 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!