Javascript

PHOTO EMBED

Thu Mar 03 2022 16:47:42 GMT+0000 (Coordinated Universal Time)

Saved by @mdrajib85801 #javascript

// API for get requests
let fetchRes = fetch("https://jsonplaceholder.typicode.com/todos/1");
      
// fetchRes is the promise to resolve
// it by using.then() method
fetchRes.then(res =>
    res.json()).then(d => {
        console.log(d)
})
content_copyCOPY