You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionnetworkRequest(){fetch('https://httpbin.org').then(response=>{returnresponse.text();}).then(response=>{console.log('Get','fetch',JSON.stringify(response))}).catch(error=>{console.log('Get','fetch',{error})})}// this does not call the fetch function. fetch is triggered when networkRequest is called.
The text was updated successfully, but these errors were encountered: