// Challenge: // The JSON Placeholder API has /users endpoint, // just like the one we saw in the tutorial for /posts // Get the user with ID 3 and log their name and company they work for. // Handle errors if something does not quite work.
// Here's the endpoint: https://jsonplaceholder.typicode.com/users/3
1
2
3
4
5
6
7
8
9
10
// Challenge:
// The JSON Placeholder API has /users endpoint,
// just like the one we saw in the tutorial for /posts
// Get the user with ID 3 and log their name and company they work for.
// Handle errors if something does not quite work.
// Here's the endpoint: https://jsonplaceholder.typicode.com/users/3