async function fnc() { const file = await fetch('sample.txt'); console.log(file); const text = await file.text(); console.log(text); }; fnc();