Prafull Tripathijavawithprafull.hashnode.dev·Aug 9, 2024My Java Full Stack Journey: A Beginner's PerspectiveStarting a new learning journey can be both exhilarating and daunting. As I dive into Java Full Stack development, I want to share my experiences, challenges, and milestones. This blog will chronicle my path from a novice to a proficient full-stack d...1 likejava full stack development
Nitin Sharmareactjsbynitin.hashnode.dev·Aug 6, 2024Virtual DOMWhat is Virtual DOM: The Virtual DOM is a blueprint of the Real DOM. In React, for every DOM object, there is a corresponding Virtual DOM object. A Virtual DOM object is a representation of a DOM object, like a lightweight copy. A Virtual DOM obj...jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Aug 5, 2024Hooks in React:useRef(): It is used to access the DOM element It is used to create mutable variable which will not re-render the component Syntax: const variableName=useRef(Optional initialValue); example: UseReference.jsx import React, { useEffect, useRef, use...codeblessyou
Nitin Sharmareactjsbynitin.hashnode.dev·Aug 4, 2024Form handling in ReactUncontrolled form Controlled form Uncontrolled Form: It is a form where it is created using reference concept In FBC we use useRef() to create uncontrolled form These forms are completely handled by DOM itself Suppose if we wanted to take we w...jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Aug 3, 2024Type of CSS in React:Inline CSS Global CSS Module CSS Inline CSS: it is a type of css where we will be applying for individual inside one particular tag using "style" attribute. the css properties should be written inside an expression in the form of "Object". ex...jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Aug 1, 2024Props(Properties):What are Props? props are inbuilt object. Props are used to send the data from parent components to child components. props are immutable it means once the value is passed from parent component it can't be changed. props are uni-directional. Q....jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Jul 31, 2024What is JSX?It is stands for JavaScript XML. Combination of JS and XML Difference b/t XML and HTML: in 'HTML' we will be using an attribute as "class", in "XML" we will be using an attribute as "className". all the events in 'html' we use in lowercase ex: o...jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Jul 31, 2024States and HooksState in react: State are used to create dynamic data on the UI. State are mutable (Its value can change). State are local, states belong to one particular component. We cannot share the state between component like props. By default FBC(Functio...jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Jul 30, 2024Folder and files in ReactJsAfter successfully installation of ReactJs, we will be getting some default folder and files. node-module: it is a folder where all the pre-define codes of ReactJs will be present. waring(don't touch this folder) public: this folder contain the...jspiders
Nitin Sharmareactjsbynitin.hashnode.dev·Jul 29, 2024Understanding the Basics of React JSReact? It is a library of JavaScript created by Facebook. Library is the collection of the predefine code. it is a tool used to build the UI Component. History of React: The first version(V0.3.0) was released in July 2013. It was created by Fa...jspiders