While Loop Pre Tested Loop Sourav Purkait 2

While Loop: Pre-Tested Loop

Introduction: While loop is a a pre-test loop, it first test a special conditional expression and as long as conditional expression is true , loop body statement will be executed. Syntax: while (condition) {      //statement;      incr/decr; } Flow chart: Step 1: In the execution flow, first initialized the value. Step 2: After initialized the value…

Share this:
Read More
Why do we use the Functional component Subham Bhattacharjee 1

Why do we use the Functional component instead of the class base component

Introduction: In React, we create two types of components: class-based components and functional components. While class-based components older approach but the functional components is new and is gained significant popularity and become the preferred choice for many developers.  Functional components are more straightforward and easier compared to class-based components. The simplicity of functional component is…

Share this:
Read More
Web development

WEB DEVELOPMENT

What do you mean by Web Development? Building, developing and maintaining websites and web applications is known as web development. Website design, front-end development, back-end development, and web server setup are various tasks involved in web development. It also focuses on the visual beauty of the website and user interaction, including the design process, selection…

Share this:
Read More
error: Content is protected !!