Answers for "json placholder"

2

json placholder

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on December-12-2019
0

json placeholder

fetch('https://jsonplaceholder.typicode.com/todos/2')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on January-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language