Sir , react ka series difficult ha , dondna aff ka videos per kia aff in sab Video ko ik saat combine karoghay . please HTML CSS JAVASCRIPT complete but react baghi ha please 🙏 help me this problem
@keshavmishra023239 сағат бұрын
Happy New year 🎉🎉🎉 sir
@keshavmishra023239 сағат бұрын
🎉🎉🎉
@Ghochumaau9 сағат бұрын
Display: grid ? Have u added somewhere in the video sir
@projectsfromscratch9 сағат бұрын
Thank you for the host video...
@projectsfromscratch9 сағат бұрын
Happy new year. great work..
@DEEPANSHU_NAG10 сағат бұрын
Happy New Year 2025 🎉🎊🥳
@xyonxyt917010 сағат бұрын
Happy new yearrrr
@arjunthakur677110 сағат бұрын
Hello thapa technical I tried to took membership money got deducted but still not become a mamber
@COOL_ANSH_010 сағат бұрын
Hello sir this course can also include jwt, mongodb, form and input validation, socket. Io, argon2, data encryption, multer etc.
@arjunthakur677110 сағат бұрын
Hello @thapa technical
@shaikdilkhushsyedbabasaifu336110 сағат бұрын
Day - 7 ❤ Still watching Thank you vinod bhaiya. And Happy New year 2025 🎉
@mihirvyas157710 сағат бұрын
const EventEmitter = require("events"); const path = require("path"); const fs = require("fs/promises"); const fileName = "SummaryReport.txt"; const filePath = path.join(__dirname, fileName); const emitter = new EventEmitter(); function getRandomInt(min, max) { return Math.floor(Math.random() * (max - min + 1)) + min; // Inclusive of min and max } const forLogin = getRandomInt(12, 189); const forLogout = getRandomInt(1, 34); const forPurchase = getRandomInt(9, 222); const forUpdate = getRandomInt(29, 77); let loginCounter = 0, logoutCounter = 0, purchaseCounter = 0, updateCounter = 0; emitter.on("loginEvent", () => { loginCounter++; }); emitter.on("logoutEvent", () => { logoutCounter++; }); emitter.on("purchaseEvent", () => { purchaseCounter++; }); emitter.on("updateEvent", () => { updateCounter++; }); function login() { emitter.emit("loginEvent"); } function logout() { emitter.emit("logoutEvent"); } function purchase() { emitter.emit("purchaseEvent"); } function update() { emitter.emit("updateEvent"); } for (let i = 0; i < forLogin; i++) login(); for (let i = 0; i < forLogout; i++) logout(); for (let i = 0; i < forPurchase; i++) purchase(); for (let i = 0; i < forUpdate; i++) update(); const summaryReport = async () => { const data = `Number Of Login Attempts: ${loginCounter} Number Of Logout Attempts: ${logoutCounter} Number Of Purchase Attempts: ${purchaseCounter} Number Of Update Attempts: ${updateCounter} `; try { await fs.writeFile(filePath, data, "utf-8"); console.log(" Report Generated Successfully! "); } catch (error) { console.error("Error while generating the report:", error); } }; summaryReport();
@ronisharma807210 сағат бұрын
Bun 19 install k baad output show nhi ho raha h
@VivekRoy-wp4oe11 сағат бұрын
world best css course
@Saurav779011 сағат бұрын
i know js but mark my words going to complate this in 2 days because its 1st jan 2025
@Ug_lazy_man12 сағат бұрын
Happy new year 2025/ jan/1. #Man_on_Mission 0:00 Introduction to JavaScript Course Topics 8:35 JavaScript Projects Overview 15:25 Steps on How to Get the Most out of JS Course 23:25 How Websites Work with JavaScript | Beginner's Guide 28:55 What is JavaScript? | Programming Essentials 32:40 History of JavaScript | Evolution and Milestones 41:20 Adding JavaScript Starter File for Web Development 46:15 Creating First JavaScript File in VS Code | Step-by-Step Guide 54:35 Values and Variables in JavaScript 1:08:20 Data Types in JavaScript | Web Development Basics 1:36:50 Bonus: Advanced Data Types in JavaScript | Programming Tips 1:51:15 Concatenation and Type Coercion in JavaScript 2:03:10 Expressions and Operators in JavaScript 4:23:30 Functions in JavaScript 5:03:10 ECMAScript 2015 Overview | JavaScript Updates 5:41:05 JavaScript Function Interview Questions | Interview Tips 6:02:20 Arrays in JavaScript | Programming Challenges 8:04:20 Strings in JavaScript | String Operations 9:14:50 JavaScript String Interview Questions | Interview Prep 9:47:28 Math Objects in JavaScript | Advanced Concepts 10:09:10 Window, Document, and Browser Object Models | Web Development Concepts 11:53:35 Thapa Technical from Future
@nailashah-zw1bk12 сағат бұрын
starting this course today 1/1/2025 m really excited for this course
@dineshshinde211613 сағат бұрын
Grasp learnings - One can use the useNavigate hook to travel the pages as per the requirement -1 ->>> means it will comeback one step if -2 ->>> means it will comeback two step This will help to understand more in detail - const navigate = useNavigate(); <button className="p-3 bg-slate-800 text-white font-[1rem] rounded-md" onClick={() => navigate(-1)} > Go Back </button>