Answers for "fetch () with json"

CSS
4

javascript fetch json

fetch('./yourjson.json')
  .then((response) => response.json())
  .then((data) => {
  	console.log(data);
  })
Posted by: Guest on December-07-2020
0

what is the request payload in jaavascript fetch

fetch('https://jsonplaceholder.typicode.com/posts/1')
  .then(res => res.json())
  .then(console.log)
Posted by: Guest on December-30-2020

Browse Popular Code Answers by Language