JS Referans: Fetch API
Fetch API için hızlı referans.
JS Referans — Fetch API
Fetch API için hızlı özet, sözdizimi ve örnek.
Sözdizimi
fetch(url).then(...).catch(...)
Örnek
async function load(){
const res = await fetch("https://api.github.com/zen");
const text = await res.text();
console.log(text);
}
load();