Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

get data from json placeholder

fetch('https://jsonplaceholder.typicode.com/posts/1')
  .then(response => response.json())
  .then(json => console.log(json))
Source by jsonplaceholder.typicode.com #
 
PREVIOUS NEXT
Tagged: #data #json #placeholder
ADD COMMENT
Topic
Name
1+6 =