GCGujarati Coderinjavascriptproxy.wordpress.com·Oct 25, 2023 · 5 min readWhat is RPCs ?RPC (Remote Procedure Call) Remote Procedure Call (RPC) is a powerful technique for constructing distributed, client-server based applications. It is based on extending the conventional local procedure calling so that the called procedure need not ex...00
GCGujarati Coderinjavascriptproxy.wordpress.com·Oct 25, 2023 · 2 min readWhat is AJAX ?In JavaScript, AJAX (Asynchronous JavaScript and XML) is a technique used to make to asynchronous requests to a Server and retrieve data without reloading the entire web page. It allows for dynamic and interactive web experiences by enabling communic...00
GCGujarati Coderinjavascriptproxy.wordpress.com·Oct 20, 2023 · 2 min readHow to call API using JavaScript ?JavaScript Fetch( ) API JS Fetch( ) API The fetch( ) is a modern JavaScript function that simplifies making AJAX requests to retrieve resources from a server. It provides a more streamlined and flexible alternative to the Traditional XMLHttpRequest....00
GCGujarati Coderinjavascriptproxy.wordpress.com·Oct 15, 2023 · 1 min readWhat is Prop Drilling?In React, "prop drilling" refers to the process of passing data from a high-level component down to a deep-level component through intermediate components that do not need the data themselves. This can happen when components in a component tree need ...00
GCGujarati Coderinjavascriptproxy.wordpress.com·Oct 11, 2023 · 3 min readFetch Data in React JS in modern wayThere are several ways to fetch data in a React application. Here are some of the most common: Fetch API : The Fetch API is a built-in browser API for fetching resources, including data from a server. It returns a Promise that resolves to the respons...00