Bagaimana mendapatkan objek JSON dari API di JavaScript

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

fetch(url)
.then(res => res.json())
.then((out) => {
  console.log('Checkout this JSON! ', out);
})
.catch(err => { throw err });
Delightful Donkey