Sandesh Khatiwadasandeshkhatiwada.hashnode.dev·Mar 6, 2023Making API Call in JavaScriptIn a typical web application, the frontend and backend communicate through APIs (Application Programming Interfaces). APIs are used to streamline communication and data exchange between different systems. It specifies how the communication should tak...11 likes·208 readsJavaScript
Mahadev Deshmukhmahadev.hashnode.dev·Feb 26, 2023AJAX and XMLHttpRequest (XHR)XMLHttpRequest object can be used to make Ajax calls to request data from the remote server asynchronously. I have studied this concept from the mentioned youtube channel. Please check the video. He has demonstrated the concept with examples. This is...Xhr
Rohit Abhishekdevbychance.hashnode.dev·Jun 8, 2022XHR vs FetchSince JavaScript is a single-threaded language, it is synchronous in nature. So doing the asynchronous tasks was a pain in the ... Therefore the concept of AJAX was introduced in javascript. Fetch and XHR is two popular methods that use AJAX. AJAX ...231 readsJavaScript