JS Dapatkan Konten File dari URL

// create a variable called content containing the content from https://URL/file
fetch("https://URL/file").then((r)=>{r.text().then((d)=>{let CONTENT = d})})
Filthy Fowl