From 22f20909feaa2f9d76c5c2552ba542af73fce005 Mon Sep 17 00:00:00 2001
From: Sojin <77185816+SojinSamuel@users.noreply.github.com>
Date: Fri, 5 Aug 2022 21:26:37 +0530
Subject: [PATCH] A Concrete Guide to JavaScript Fetch API (#1400)
Talks about the JavaScript Fetch API and how to use it to make asynchronous HTTP requests. This post goes through Sending a Request to Handling the status codes of the Response. Extremely beginner-friendly, easy-to-understand examples.
---
.../content/103-javascript/102-learn-fetch-api-ajax-xhr.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/content/roadmaps/100-frontend/content/103-javascript/102-learn-fetch-api-ajax-xhr.md b/content/roadmaps/100-frontend/content/103-javascript/102-learn-fetch-api-ajax-xhr.md
index 1f675d17e..488955b8d 100644
--- a/content/roadmaps/100-frontend/content/103-javascript/102-learn-fetch-api-ajax-xhr.md
+++ b/content/roadmaps/100-frontend/content/103-javascript/102-learn-fetch-api-ajax-xhr.md
@@ -4,5 +4,6 @@ Ajax is the technique that lets us send and receive the data asynchronously from
Free Content
Fetch API MDN Docs
+A Simple Guide to JavaScript Fetch API
Introduction to Fetch
JavaScript Fetch API