Tell us what’s happening:
I don’t understand why my code isn’t working i have the same code as the solution:
app.post(“/name”, function(req, res) {
var string = req.body.first + " " + req.body.last;
res.json({ name: string });
});
###Your project link(s)
solution: http://localhost:3000
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:147.0) Gecko/20100101 Firefox/147.0
Challenge Information:
Basic Node and Express - Get Data from POST Requests