
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 127 Articles for ReactJS

125 Views
Developer is the most demanding profile these days, so to become a developer you have to be updated with the new technologies used by top companies and developers. Here in this article, we list down the top 10 web frameworks by considering the reports of several renowned platforms like Stack Overflow and Statista. List of Top Frameworks and Libraries Explore the leading web frameworks of 2024, favored by developers. Gain insights into their functionalities and how they can elevate your web development projects. ... Read More

87 Views
Web Development usually focuses on the navbar and it is the primary mode of interaction with users - hence making a good navbar design an important element. Welcome back to another blog tutorial - Today we are gonna build a navbar that is both responsive and visually appealing using ReactJS. To make a professional and user-friendly web application, you must have an attractive navbar. We will begin with a simple React project and then build a responsive navbar using pre-designed styles to make it beautiful. Prerequisites React Basics: You must know about the basics ... Read More

61 Views
Across web development, the need to produce forms that are dynamic and responsive is a fundamental piece of providing an enjoyable UI/UX. ReactJS, as one of the most popular JavaScript libraries for building User interfaces provides many powerful features for managing form elements. One of these requirements is setting a default value in the dropdown element. This is particularly useful in forms where you would like to preselect an option to prompt the user or some state. In this article, we will discuss how to add a default value in the element of ReactJS and explain them with code snippets ... Read More

38 Views
A countdown timer is a very common and useful feature in any web application, for example, we get it when the site switches into maintenance. An event starts at a defined time or finishes on the next day etc. In this way, using ReactJS to build a countdown timer gives you the perfect implementation — involving best state management and lifecycle methods it helps with delivering an attractive user interface completely. In this article, we are going to create a countdown time in ReactJS. Prerequisites Before you start creating your own countdown timer in ReactJS, ensure you have the ... Read More

295 Views
Fetch or Axios are frequently used by developers to perform smooth HTTP protocol communication between web applications and servers. While they are similar, some people think Axios is more straightforward. But there's also the built-in API Fetch, which is just as capable as Axios. Fetch API The Fetch API is a built-in JavaScript function that provides a simple interface for making HTTP requests. Introduced in modern browsers, it is a native alternative to older methods like XMLHttpRequest. Syntax fetch(url, options) .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error)); Fetch returns ... Read More

6K+ Views
Node.js and ReactJS each tech stack are popularly utilized in modern-day full-stack web programs. ReactJS is used for the front stop and Node.js is used for the again quit. ReactJS is a famous JavaScript library for building user interfaces (UIs). React main objective to simplify the intricate method of building interactive consumer interfaces. Node.js is an open-supply, cross-platform JavaScript runtime environment. It is ideal for handling fast and scalable servers that can handle simultaneous connections with high throughput. Connect Backend to Frontend Before connecting the backend and frontend ... Read More

163 Views
In this article we will learn about sending state/props from one component to another component in React.️ Before moving on, let's see what state and props are in React. We use props and state for dynamic content which get changed from time to time. Props: Props are short form of Properties. These are read-only, meaning they can't be changed, and we pass props from the parent component to the child component. means the child component which has props received from the parent component can't be modified. State: State is used ... Read More

1K+ Views
In React MUI, managing form states or validating them is a big task. To solve this issue, we have the useFormControl() hook available in MUI. This hook allows to customize the state according to different project requirements, etc. In this article, we'll explore the usage of the UseFormControl() hook in the Material UI in React. useFormControl API The useFormControl API or hook returns the context value of the parent FormControl component. It gives an abstraction layer that allows to manage of the form state and validation of the given form controls. API returnable objects There are different useFormControl hook returns, ... Read More

282 Views
In this article, we will explore how to utilize the "scale" prop in Material UI to represent values on a scale. The "scale" prop in Material UI's Slider component enables you to map the range of values of the slider onto a scale. The usage of this property is very simple and easy to implement. Also, the prop is useful when there is a need to display and manipulate values on a scale that differs from the default linear scale of the slider. If we talk about the value it accepts, then it acts as a function that takes ... Read More

740 Views
This article will cover the usage of features in Material UI. The "Select" component, an element of Material UI allows users to choose options from a menu. To customize the behavior and appearance of the Select component various props are available. Select API − This API is used to add the Select component to select data from a list of options in Material UI. Props autoWidth − This property is used to set the width. children − This property defines the options, for the menu items. classes − This property is used to customize or add ... Read More