javascriptproxy.wordpress.comWhat 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...Oct 25, 2023·5 min read
javascriptproxy.wordpress.comWhat 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...Oct 25, 2023·2 min read
javascriptproxy.wordpress.comHow 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....Oct 20, 2023·2 min read
javascriptproxy.wordpress.comWhat 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 ...Oct 15, 2023·1 min read
javascriptproxy.wordpress.comFetch 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...Oct 11, 2023·3 min read