/** * Fetch - Challenge * * GET the first comments value 'https://jsonplaceholder.typicode.com/comments/1' and log its value. * POST a new comment using 'https://jsonplaceholder.typicode.com/comments' and log its value. * * RESTFul API Guide - https://jsonplaceholder.typicode.com/guide.html * Docs - https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch */
1
2
3
4
5
6
7
8
9
10
11
12
/**
* Fetch - Challenge
*
* GET the first comments value 'https://jsonplaceholder.typicode.com/comments/1' and log its value.
* POST a new comment using 'https://jsonplaceholder.typicode.com/comments' and log its value.
*
* RESTFul API Guide - https://jsonplaceholder.typicode.com/guide.html