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
Write an asynchronous function that fetches data from: https://jsonplaceholder.typicode.com/posts Use an AbortController to cancel the request if it takes more than 2 seconds. If successful, convert the response to JSON and log the total number of posts. If cancelled, log: Request was cancelled. Call the function to run it.