41
loading...
This website collects cookies to deliver better user experience
"https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"
const baseURL = 'https://swapi.dev/api/'
const peopleURL = 'https://swapi.dev/api/people/1/'
fetch(peopleURL)
.then(response => response.json())
.then(data => console.log(data));
fetch(peopleURL)
// .then(response => response.json())
// .then(data => console.log(data));
//fetch('https://swapi.dev/api/')
.then(response => response.json())
// .then(data => console.log(data));
//fetch('https://swapi.dev/api/')
// .then(response => response.json())
.then(data => console.log(data));