I litrally view your video first time bhaiya The way you are teaching is amazing i will complete and start the journey of javascript from now. Thanks ALOT Bade Bhaiya😊😅
@drprabhakarbhagwat3 жыл бұрын
Your all tutorials are awesome on HTML, CSS and JavaScript. I have learnt HTML and CSS, Now I m learning JavaScript. 🙏🙏👍👍
@balpreetkaur03563 жыл бұрын
You are brilliant 🙂🙂 sir .i got all the logic of stop watch.i have been confused since i started project of stop watch i was so bemused . didn't know how to create stop watch .but thanks to you i learnt a lot.😘
@inamullahkhan77933 жыл бұрын
Your projects are mind blowing I am really enjoying. Your projects are awesome wish for many many more projects as we are learning deeply all the three concepts html, css and javascript from those projects so it'll be so good if you do as much projects as you can. These projects are helping a lot in developing our programming logics.
@mdabidkalam35272 жыл бұрын
A small bug is if we click start multiple times then speed of stopwatch increases. if we go with toggle approach it will be better. But a little complicated for beginners.........still a great project and i liked it.
@Tarunislive135 Жыл бұрын
yes bro
@mdabidkalam35277 ай бұрын
let timer = false; let count = 0; let sec = 0; let min = 0; let hr = 0; function stopWatch() { if (timer) { count++; if (count === 100) { count = 0; sec++; } if (sec === 60) { sec = 0; min++; } if (min === 60) { min = 0; hr++; } //------For showing 00 in hr min sec count in html------- let countStr = count < 10 ? "0" + count : count; let secStr = sec < 10 ? "0" + sec : sec; let minStr = min < 10 ? "0" + min : min; let hrStr = hr < 10 ? "0" + hr : hr; //---------showing HTML---------------- document.getElementById("count").innerText = countStr; document.getElementById("sec").innerText = secStr; document.getElementById("min").innerText = minStr; document.getElementById("hr").innerText = hrStr; setTimeout(stopWatch, 10); // recursion approach via microTask queue } } function start() { if (timer) return; //removing bug for multiple recursion of stopwatch() with return timer = true; stopWatch(); }; function stop() { timer = false; }; function reset() { timer = false; hr = min = sec = count = 0; document.getElementById("count").innerText = "00"; document.getElementById("sec").innerText = "00"; document.getElementById("min").innerText = "00"; document.getElementById("hr").innerText = "00"; };
@parveshqaiser9840 Жыл бұрын
Awesome Explanation.. Before watching this video, watched 2-3 videos of stopwatch.. but didn't find useful..
@jamesseay32942 жыл бұрын
Great work vishwajeet, easy to understand. you are an amazing teacher
@codewithayesha10 ай бұрын
Thank you bhaiyya...😃
@sanazainubbukhari83612 жыл бұрын
i love of way of you about teaching the logic & all never found more better for stop watch
@vkraj87353 жыл бұрын
The way of your teaching is really easy understandable.
@MukeshKumar-fz3sw2 жыл бұрын
Bhut achha samjhaya sir
@noemahmedkhan61052 жыл бұрын
Very Amazing watching from Pakistan ❤️🇵🇰 Kindly start next PHP language
@kiranmoura29742 жыл бұрын
Well explained, thank you so much for this video 👏👏👏👏
@pranjalsrivastava16293 жыл бұрын
A small Bug in the code: Use 99 for count and 59 for all sec, min, hr because on 100 and 60 respectively that time is completed and isn't shown. ex. 60 sec = 1 min. So on completion of 60th second we update min by 1.
@mdabidkalam35272 жыл бұрын
Another small bug is if we click start multiple times then speed of stopwatch increases. if we go with toggle approach it will be better. But a little complicated for beginners.........still a great project and i liked it.
@pritishsinghal30192 жыл бұрын
@@mdabidkalam3527 for all those who are suffering from this problem, 1) use all the if conditions in a nested way (seconds inside count, minutes inside seconds and hours inside minutes), and put the settimeout() inside the count-if-condition i.e. trigger settimeout() only when the 'timer = true'.....this will solve the stopwatch becoming faster...when you click start after you hit stop or reset....BUT stopwatch will still become faster if you hit start multiple times, before hitting stop or reset....to solve it see 2) point. 2) put an if condition on start().... if(timer == true){ return; } else{ timer = true; stopwatch();
@sharatchauhan9860 Жыл бұрын
@@mdabidkalam3527 we can disable start button after click on start and disable when we click on stop... easy
@mdtamzilsubhani7340 Жыл бұрын
I want Load the calculate video, you done the great job Sir
@sayalibhasme7643 жыл бұрын
Sir waiting for javascript Advance tutorial, completed your html css js also M changing my field from mech to IT, so waiting for your tutorial to became front end developer
@GB-su9gu3 жыл бұрын
jv script part 15 today i learn..
@learnwithme22323 жыл бұрын
I like this tutorial. In this lockdown , Javascript taught by sir become more interested. Thanks sir for introducing javascript for us.
@vkraj87353 жыл бұрын
Keep uploading such projects.
@sahilhans18673 жыл бұрын
Bro pls check I have upload how to make calculator and password generator using javascript and pls support 🙏🙏🥺
@vkraj87353 жыл бұрын
@@sahilhans1867 not showing bro
@vkraj87353 жыл бұрын
@@sahilhans1867 not showing bro
@tahirzaman94413 жыл бұрын
We would like as much as projects possible... Cuz it's amazing... 0lease keep uploading projects
@sahilhans18673 жыл бұрын
Bro pls check I have upload how to make calculator and password generator using javascript and pls support 🙏🙏🥺
@surojsantra41723 жыл бұрын
This tutorial is helpful .............
@nainabirla24 Жыл бұрын
Thank you sir .Very nicely explained.
@12rajendrajangid903 жыл бұрын
Html css or javascript #project ke bare mai bhi tutorial banao
@jay-shree-ram9 Жыл бұрын
tq sir you are best teacher
@zainraza20903 жыл бұрын
Love from Pakistan Sir kindly baqi videos bhi upload kar dy Thanks...
@vkraj87353 жыл бұрын
Very useful sir, I started this tutorial, it's really awesome. You are doing really great work for us..
@raazkumar45232 жыл бұрын
Superb explanation sir👌
@samsingh22463 жыл бұрын
U are explaining very well . sir react.js pr video kb aygi ...
@hhamzazaibbhatti17653 жыл бұрын
Amazing sir thank you
@MakeMyShorts3 жыл бұрын
one problem multi click on start button then see reaction sir please reply me
@sudhakarkumar30392 жыл бұрын
nice explanation... 👍🏻
@spsp31933 жыл бұрын
Superb explanation..
@mohitshastri8283 жыл бұрын
Amezing videos sir 👍👍👍
@avadhutpatil66252 жыл бұрын
Thanks Sir. . Your videos are just amazing😍. you are really doing great work for learners like us.
@harendrasinhparmar90963 ай бұрын
Thank you.sir
@nadirkhanvlogs02 жыл бұрын
1 more bug if we click multiple time on start button as a result speed of the watch increases on every click
@bhagirathiverma2627 Жыл бұрын
Thanks a lot sir for this nice tutorial....😇😇😇😇 there is an error in this code if I click start multiple times then speed of stopwatch increases.🤔
@maamobileoldphoneshop93563 жыл бұрын
Great project when will this course end bhaiya? My friend reffered this channel
@anshikamaurya1823 жыл бұрын
Nice sir👍👍
@durgayadav25453 жыл бұрын
Is this is a last video on Javascript. if not then how much more video will come? waiting for your lovely teaching :)
@souravsarkar-mu8hq2 жыл бұрын
Excellent sir ❤❤
@carry_minatii Жыл бұрын
Hi sir, this project was mind blowing but sir there are some bug in this project 1. If the start is pressed multiple times then the timer speed is increased. 2. The timer is not accurate almost it runs of 7 seconds only in 10 seconds.
@wanderwithprateek Жыл бұрын
hi there u got the solution of 2nd point?... please do reply..thankyou
@rashid-iqbal Жыл бұрын
@@wanderwithprateek just change the setTimeout,value from 10 relative to clock.
@subhamsahoo52033 жыл бұрын
Bro mix all the JavaScript playlist and make a video
@rajatchaurasia35783 жыл бұрын
Present sir 💥😍💥😍💥😍
@parmaryash44063 жыл бұрын
Amazing👍👍👍
@pranjalsrivastava16293 жыл бұрын
Another Bug: What if we keep on pressing 'start' button - it keeps adding and the time starts running like crazy
@AbdurRahman-qc3ip3 жыл бұрын
i got a solution do this if (timer == true) { document.getElementById("start").disabled = true; }
@hamzaishfaq95483 жыл бұрын
@@AbdurRahman-qc3ip Thanks it worked
@AbdurRahman-qc3ip3 жыл бұрын
@@hamzaishfaq9548 mention not
@patelkuldeep7531 Жыл бұрын
I also faced this problem for solution I used disabled attribute
@pushkarkumar55783 жыл бұрын
love your work ty for educating us.
@anmoldubey40893 жыл бұрын
Sir maine html and css complete kr liya hai... aap hi k tutorial se ...will javascript be enough for making my website responsive????
@anmoldubey40893 жыл бұрын
@@09.arkodevmukherjee24 thanks dude
@Oldstoryhouse3 жыл бұрын
@@09.arkodevmukherjee24 no dude...just know the basics of internet fundamentals and web hosting is enough coz...frontend needs at least 1 year of work...give ur hands on framwork and projects then switch to backend...
@Oldstoryhouse3 жыл бұрын
@@09.arkodevmukherjee24 thats why the website made by people like you crashes 🤣🤣.. Bro there is thing seo and optimization...lots of professionals took long time to achieve it...
@GeniuslyTensai3 жыл бұрын
From when will the advance js start?
@prajeshparekh71752 жыл бұрын
Hi TechGun, ye pura stopwatch timer ko localstorage me store kaise karwaye taki is page ko refresh karne par hamara timer count on hota rahe without reseting. uspar bhi tutorial banao with same stopwatch.
@pushkarkumar55783 жыл бұрын
to show 2 digit number we can use localString method eg = number.toLocaleString( "en-US",{ minimumIntegerDigits: 2, useGrouping: false } );
@09.arkodevmukherjee243 жыл бұрын
Sir please make one project on Modals like how to make it.
@omkarjaripatke93982 жыл бұрын
isme bhi ek problem hai hum jitni bar start click krte hai stopwatch ka timer fast hojata hai maybe becoz wo multiple time function call kr raha hoga isliye
@gamingwithajk7253 Жыл бұрын
bhai sahab yar
@chakra17293 жыл бұрын
Sir CUSTOMIZED video player ka tutorial upload karo
@nimeshtank3103 жыл бұрын
Perfectly explained. But settimeout m confused hua
@umeshpatel94083 жыл бұрын
That's great thanks sir💓💓💓🤟🤟
@AshishYadav-pd8bi2 жыл бұрын
hi there! , I found the small bug in this code, if you hit more than one time on the start button then the function stopWatch() call again , if you hit 5 time stopWatch() call 5 times in the nested type function inside function , due to this the timer increase exponentially.
@somilyadav42932 жыл бұрын
I am also getting this bug
@aabhasjain962 жыл бұрын
For this bug you need to disable the start button, like this : Add below line inside the start function: document.getElementById("start").disabled = true; Also add below line inside stop and reset function: document.getElementById("start").disabled = false;
@MohitAanjne2 жыл бұрын
@@aabhasjain96 Yes I also Observed this bug..but still not working.
@bajrulmiddya1176 Жыл бұрын
@@aabhasjain96 Button ko disable Karke Koi fayda Nahin ho raha hai
@aabhasjain96 Жыл бұрын
@@bajrulmiddya1176 kyu nahi ho raha bhai, disable kar diya ro click nahi hoga aur function phir se call nahi hoga.
@gamingstar59983 жыл бұрын
Tailwind css kha opor ak video banaya please
@12rajendrajangid903 жыл бұрын
Great sir
@gamingwithajk7253 Жыл бұрын
bro code me ik problem hy agy hum start ke button per 2 bar click krde to tym zyda jldi increase hota agr 3 bar to or jldi
@factinzone76072 жыл бұрын
Sir php ka tutorial banaiye plz
@12rajendrajangid903 жыл бұрын
Outstanding work
@urghh3 жыл бұрын
Thank you ...🙏🏻
@dharmbharodiya51583 жыл бұрын
You're the best!!!
@ganeshkhadka23963 жыл бұрын
Thank you so much for your efforts bro love from nepal!
@praveenbadasar99562 ай бұрын
Nice 🎉
@TechGun2 ай бұрын
Thanks 🤗
@satyamrawat12452 жыл бұрын
Master bhushan
@lovishaggarwal14023 жыл бұрын
There was a bug when i restart and start or stop start the time increases evry time and gives incorrect time (why?)
@panyam_hub_infoinfo54873 жыл бұрын
Plz make pagination with photo
@pranjalsrivastava16293 жыл бұрын
Bug in the code or logic used: the stopwatch is running slow comparing to google stopwatch watch or stopwatch in smartphone. Please help, maybe a refined logic would work?
@rashid-iqbal Жыл бұрын
use 8 millisecond in setTimeout,it will work
@Meraj4843 жыл бұрын
Bhi plz c language pr video banye
@Raj_Vishwa13 жыл бұрын
Sir app jo shortcut use karte ho vscode me uska ek alag video bana digiye 🙏🏻
@TechGun3 жыл бұрын
Tips and tricks for web developer title se ek video already uploaded h. Usme sab bataya h
@Raj_Vishwa13 жыл бұрын
@@TechGun ok I'll check.. thanks sir🙏🏻
@ashishmaisachinanand9599 Жыл бұрын
Sir where we find this code? Which you had taught
@muhammadasim49453 жыл бұрын
Waiting for JavaScript in 1 video
@drprabhakarbhagwat3 жыл бұрын
Vishvajeet bhai ji good afternoon, Aap jo bhi function run kar rahe ho, woh console.log me show hota h, woh web page par kab show hoga html ki tarah....! Please clear my doubt 🙏🙏
@TechGun3 жыл бұрын
Jab aap project tak video dekhoge to sab clear ho jayega ki kyu console.log kar raha hu aur webpage pe kaise dikhega.
@drprabhakarbhagwat3 жыл бұрын
@@TechGun thanks Vishwajeet bhai abhi toh 18th video par aaya hu, mujhe array function kafi acha laga 🙏👍
@Oldstoryhouse3 жыл бұрын
Thats why we use events ...
@sarkari-mahiti3 жыл бұрын
Sir jaldi video upload karo sir
@sarkari-mahiti3 жыл бұрын
Html css JavaScript complete hone ke bad angular choose kare ya react sir
@TechGun3 жыл бұрын
React
@syedismail97583 жыл бұрын
Sir react pe tutorial banaye js ke baad plz
@Oldstoryhouse3 жыл бұрын
Its upto you if you want flexible libraries then choose react or if you want industrial framwork with big community then angular is the best option
@doyouknow750 Жыл бұрын
React
@inspiringstories1433 жыл бұрын
Sir ji kya javaScript Es tutorial se complete ho gaya he kya .
@difinreel1883Ай бұрын
isme ek problem hai, agar stop dabane ke baadh vapis start dabaya toh time speeed ho raha hai, uska problem ka kya solution hai?
@malik_creation38 Жыл бұрын
sir there are bug when we click on start button then speed of mint,sec and hours are increaing speedly.
@mdtamzilsubhani7340 Жыл бұрын
I done this program
@12rajendrajangid903 жыл бұрын
Sir aap ne study konsi ki hai????
@MohitThakur-yz7bb Жыл бұрын
How can make it for multiple divs in html
@surojsantra41723 жыл бұрын
Jquery ka tutorial chaieay!!
@Oldstoryhouse3 жыл бұрын
Abhe jquery ka koi fayda nhi bhai..ES6 me sab h
@surojsantra41723 жыл бұрын
@@Oldstoryhouse Thank you !!!
@loki50593 жыл бұрын
Display:inline-flex Display:flex Ke bare mai video banao please
@farighahmadsabri3018 Жыл бұрын
1 small bug: The stopwatch stops to function when we change the tab and starts again from the point we left when we are back on the page. Any fix to this?
@atharvashivalkar64263 жыл бұрын
Hello sir I have one doubt that I seted timer=true but it does not show me any error ..can you please explain ..
@nikitakanwar80412 жыл бұрын
Start pe double click krne pe speed bhi bhad rhi hai...........eska koi solution btao sir 🙏
@maggie78503 жыл бұрын
Stopwatch is slow as compare to Google or phone stopwatch what's bug ? Please help thanks.
@fullpower42753 жыл бұрын
Sir python easy hai ya php?🙏
@TechGun3 жыл бұрын
Php and python Dono hi easy h, java c c++ ye 3 toda tough h
@fullpower42753 жыл бұрын
@@TechGun 🙏
@swarnavobose55782 жыл бұрын
sir same to same code karne k bad bhi start/stop koi bhi button kam nhi kar rha mera... kya kare sir? please help
@SAACHIPANDEY Жыл бұрын
24:30
@ps68462 жыл бұрын
There is bug in this . By pressing start button multiple times timer is going exponentially fast. What is the resolve for this?
@INDClashers3 жыл бұрын
Really great tutorials but don't know Itna kaam view 🤔🤔
@09.arkodevmukherjee243 жыл бұрын
First
@pushkarkumar55783 жыл бұрын
why we writing stopwatch function in brackets "" in setTimeout funtion
@vaibhavtiwari76593 жыл бұрын
Sir agar hamne Pc me ek webpage banaya, fir us webpage ka pura folder mobile me transfer kiya to mobile me css ki file aur images chrome me kaam nahi karti kewal HTML show karta hai, link bhi sahi lagaya hai.
@vkraj87353 жыл бұрын
Yes, iske liye aapko apna site kisi server per upload krni hogi.. Free or trial ke liye aap github ka use kr skte ho.
@vaibhavtiwari76593 жыл бұрын
@@vkraj8735 but offline ke liye ?
@krishnaTiwari8513 жыл бұрын
sir this series finished or not ?? more interesting sir