AAfi inidealead.hashnode.dev·Dec 19, 2023 · 3 min readGetting started with JavaProcedural: A specific series of well-structured steps and procedures to complete a task or program. It contains a systematic order of statements functions and commands to complete a task. Functional language: writing a program in pure functions i...00
AAfi inafi.hashnode.dev·Dec 19, 2023 · 3 min readReact seriesHow to get started: open your VSCode terminal and run command -> npm create vite@latest than it will ask for project name : 01basicreact(in our case) then it will ask you for framework -> react(in our case) then choose variant -> JacaScript ( in our ...00
AAfi inidealead.hashnode.dev·Dec 19, 2023 · 2 min readFlow ChartsA flow chart is a thought process of what you are gonna make or create. Let us first understand the basics through an example -> Ques. Take a car name and output "He is having [car name] car. Let us get started with symbols used in the flow chart : ...00
AAfi inidealead.hashnode.dev·Dec 19, 2023 · 3 min readCreating a ListGroup Component in reactNote: I have used Bootstrap here, (Bootstrap is a very popular CSS library that gives us a bunch of CSS classes for styling our application) To install Bootstrap in your program run the command : npm install or i(short for install) bootstrap After th...00
AAfi inidealead.hashnode.dev·Sep 24, 2023 · 3 min readClass constructor and static in JavaScriptGetting started from the basics of constructors, Instance methods and Static Methods. Constructors Purpose: The constructor is a special method that gets called when you create an instance of a class. It's used to initialize the object's properties...00