Answers for "javascript get json file from url"

4

how get a json object from an api in javascript

let url = 'https://example.com';

fetch(url)
.then(res => res.json())
.then((out) => {
  console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });
Posted by: Guest on March-17-2020
0

javascript get json file from url

let url = 'https://labtask87.s3.amazonaws.com/employeedata.json';

fetch(url)
.then(res => res.json())
.then((out) => {
  console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });
Posted by: Guest on August-25-2021

Code answers related to "javascript get json file from url"

Code answers related to "Javascript"

Browse Popular Code Answers by Language