
This course includes our updated coding exercises so you can practice your skills as you learn.
See a demo
// A student has to enter best 4 Marks and You have to calculate sum and %
// Find in Which university he is eligible for
// Criteria is for admission in DU Percentage require is >95%
//for admission in CHRIST university >90%
// for admission in Amity >70
let subjects=[];
let sum=0;
let percentage;
for (let i = 0; i < 4; i++) {
subjects[i]=Number(prompt("Enter "+(i+1)+" marks"));
sum=sum+subjects[i];
}
percentage=(sum/4).toFixed(2);
if(percentage>=70){
if(percentage>=90){
if(percentage>=95){
alert("You are eligible for all university")
}
else{
alert("You are eligible for amity and CHRIST")
}
}
else{
alert("you are eligible for only amity")
}
}
else{
alert("You are not eligible for any university")
}
let fname=["Ram","Mohan","Shyam","Rahul","Pankaj","Anil"];
let lname=["verma","sharma","gupta","chaudhary"];
let ages=[22,25,26,24];
let availability=["weekdays","weekends"];
let employees=[];
for (let i = 0; i < 5; i++) {
let ob={};
ob.fname=fname[parseInt((fname.length)*Math.random())];
ob.lname=lname[parseInt((lname.length)*Math.random())];
ob.ages=ages[parseInt((ages.length)*Math.random())];
ob.availability=availability[parseInt((availability.length)*Math.random())];
employees.push(ob);
}
Master React.js & Frontend Development in 2025 – in Hindi
Transform your web development career with this React.js Complete Course in Hindi, designed for beginners and aspiring frontend developers!
Upgrade your JavaScript skills, discover functional components, virtual DOM concepts, and advanced hooks API, following the latest industry standards and interview preparation tips.
Learn not just the fundamentals of JavaScript (including ES6) but also real-world application with modern React 18, Hooks, and Redux Toolkit.
What You'll Learn
Core JavaScript and ES6 concepts: variables, functions, async programming
React.js basics: components, props, state, lifecycle
Advanced React: Hooks (use State, use Effect, custom hooks), Context API
Routing with React Router
Redux and Redux Toolkit for state management
Project-based learning: Build 5+ portfolio-grade web apps
API integration and real responsive design
Firebase authentication and data storage
Modern frontend best practices for 2025
Key Features
All explanations in easy-to-follow Hindi
Beginner-friendly: no prior React experience required
Focus on real-world projects, not just theory
Constant updates to match industry changes
If you want to build real, modern websites using React.js, and you prefer explanation in Hindi with hands-on projects, this course is for you. Join now and become a job-ready frontend developer by mastering the most in-demand technologies!