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 Create, Read, Update, Delete Create, Read, Update, Delete Quiz 2

please can you help?

i have been stuck on this a few hours, Can you help witht the blank?

Consider the following JSON object that’s been sent along with a PUT request. Using the req.body property, create a new object using the information sent from the client:

{ "userName": “Freda”, "age": 62 }

app.put(‘/people’, (req,res) =>{ updatePerson({ "userName": ___ "age": req.body.age }); });

1 Answer

Use the same pattern for userName as the one described for age:

{
  "userName": Freda,
  "age": 62
}

app.put(/people, (req,res) =>{
    updatePerson({
        "userName": req.body.userName,
        "age": req.body.age 
    });
});