2 projects with Async JS | chai aur

  Рет қаралды 198,074

Chai aur Code

Chai aur Code

Күн бұрын

Пікірлер: 576
@code_with_okg
@code_with_okg 10 ай бұрын
3:28 setTimeour( ) 10:02 clearTimeour() 13:40 setInterval() 15:46 clearInerval() 17:05 project 6 (Background Color Changer) 32:02 project 5 (keyboard checker) ( : ye lo Bhai Ji : )
@krishansaini8913
@krishansaini8913 9 ай бұрын
thanks brother
@apuravsharma9995
@apuravsharma9995 5 ай бұрын
Bhai app jug jug jio
@faizandarwesh9606
@faizandarwesh9606 2 ай бұрын
Thanks alot!
@vrajverma3907
@vrajverma3907 Жыл бұрын
cheeze itni easy hoti nahi jitni easy aap bana dete ho sir, I wish I found you during my clg time, but nevertheless I know u are here always to help us. Thanks you so much.
@thecalgarians4597
@thecalgarians4597 6 ай бұрын
Hardly any tutor taught clearTimeout() in their tutorials. Kahan the aap Hitesh ji itne time se. You're a blessing in disguise. ❤
@ashutoshshukla5912
@ashutoshshukla5912 3 ай бұрын
Thank you sir❤
@learner801
@learner801 2 ай бұрын
Solution for task 1 at 16:38 const saydate = function(str){ console.log(str , Date.now()) } let Interval; document.querySelector("#start") .addEventListener('click', function(){ Interval = setInterval (saydate, 1000, 'Anything') } ) document.querySelector("#stop") .addEventListener ("click", function(){ clearInterval (Interval) }) I'm extremely grateful to this channel! This is the most in depth tutorial for JS I've ever found!
@DharmpalSinghSisodiya-zh1df
@DharmpalSinghSisodiya-zh1df 27 күн бұрын
ek problem hai isme agar start par dooble click kare to fir vo stop nahi hoga
@learner801
@learner801 25 күн бұрын
@@DharmpalSinghSisodiya-zh1df I reran it and what u said is true, but I can't seem to understand what's causing this. I'm sorry for this, if u know the reason , do tell me! thnx for pointing it out.
@ashishbisht6857
@ashishbisht6857 16 күн бұрын
Thanks buddy
@learner801
@learner801 15 күн бұрын
@@ashishbisht6857 np ;)
@BCA-batch
@BCA-batch Жыл бұрын
SetTimeout(function/function reference,milliseconds) ClearTimeout(variable which hold the reference of settimeout) SetInterval(function /functiom reference, milisecond) - repeat until we clear it. ClearInterval(reverence of function)
@lakshyathakur5533
@lakshyathakur5533 9 күн бұрын
thanks
@ahtishams
@ahtishams 11 ай бұрын
23:29 you guys can also use this for random colors //GET RGBA FOR BACKGROUND COLOR STRING function getRGBA() { let random1 = Math.floor(Math.random() * 255); let random2 = Math.floor(Math.random() * 255); let random3 = Math.floor(Math.random() * 255); return `rgba(${random1},${random2},${random3})`; }
@fatkneegar
@fatkneegar 10 ай бұрын
thankyou
@Abbas_404
@Abbas_404 9 ай бұрын
function randomColor () { let color = ""; for (let i = 0; i < 3; i++) { color += ` ${Math.floor(Math.random() * 256)}` } return body.style.backgroundColor = `rgb(${color})` }
@doremon3692
@doremon3692 8 ай бұрын
mai bhi yeh soch rha thaa krne ko @@Abbas_404
@shouviksarkar7900
@shouviksarkar7900 2 ай бұрын
I also used rgba; function random(num){ return Math.floor(Math.random()*(num+1)); } let changeColor; document.getElementById('start').addEventListener('click', () => { changeColor = setInterval(()=>{ let colorCode = `rgb(${random(255)}, ${random(255)}, ${random(255)})`; document.body.style.backgroundColor = colorCode; }, 1000) })
@piyushramnani1014
@piyushramnani1014 Жыл бұрын
Great content Hitesh, I hope more and more people find this amazing channel where you make things so easy to understand. When I was working on an app (MERN - Chat Application) I found these topics tricky because just a keyword await had so much power that it was not encrypting the passwords I was sending to the DB. After hours of debugging, it made me realize that I need to learn such topics first to be able to build such application. But what good way to learn than a project. Anyhow! I am glad that we have people like you in tech helping us in our journey.
@Hamza-Pro-Dev
@Hamza-Pro-Dev 3 ай бұрын
Task 16:30 My solution const stInt = function(str){ console.log(str, Date.now()); } let interVal; document.querySelector('#start').addEventListener('click',function(){ interValid = setInterval(stInt, 1000, 'Hello World'); }) document.querySelector('#stop').addEventListener('click', function(){ clearInterval(interValid); console.log('clicked'); })
@tarunsoni2443
@tarunsoni2443 5 ай бұрын
31:20 We are checking intervalId is not null then only start the interval otherwise it would create the multiple instances of the setInterval which would change the background color much faster and the stop button would not be able to clear all intervals if initially we have clicked on start button multiple times and then we click on stop button.
@Azharuddin-khan
@Azharuddin-khan 3 ай бұрын
He didn't properly explained the reason why it was not working as you mentioned. it would be much better if he would have said, we are setting interval to none to save memory space and checking intervalID for the problem you mentioned in your comment. He made it look like the stop was not working because we set intervalID to null, while the actual reason of why it was not working was reason you mentioned.
@Vishal_0841
@Vishal_0841 Жыл бұрын
Sir 3din phle start kiya JavaScript apke channel pe aur lgbhag aadha Video dekh liya practical bhut acha smjhaye apne 🥰
@inamali4714
@inamali4714 Жыл бұрын
Pahle chai bna leta hu fir chai ke saath video dekhunga 😅
@aishwaryakamati8071
@aishwaryakamati8071 Жыл бұрын
😂
@filmbuzz9419
@filmbuzz9419 9 ай бұрын
😂
@akbarhosenpersonal
@akbarhosenpersonal 4 ай бұрын
phele pc on kar lo, pir vs code.. Chai coro.. Vo hitish sir pee lega.. Sirji ka time bara accha caal raha haun 😂
@supratiksarkar1195
@supratiksarkar1195 Жыл бұрын
I can tell my two months journey into full stack. I found it daunting to master backend. I switched to firebase. Next i started small projects in JS but i had to throw it all away once i started building a task management website using react. Its completely different, doing small projects and building something you want to according to your vision. There are ao many things involved. I didn't even do any react hooks individually but i am implementing and trying to understand them in the website. Its daunting, challenging.
@tajinder715
@tajinder715 Жыл бұрын
hey i would like to connect eith you. your discoed please!
@ChiragGarg-jl9im
@ChiragGarg-jl9im 5 ай бұрын
3:28 setTimeour( ) 10:02 clearTimeour() 13:40 setInterval() 15:46 clearInerval() 17:05 project 6 (Background Color Changer) 32:02 project 5 (keyboard checker)
@ritik.choubey
@ritik.choubey 7 ай бұрын
" ek thread pr chalta isliye, javascript hai" gave me goosebumps love the way you teach !!!
@adityashukla6966
@adityashukla6966 Жыл бұрын
Sir i love the way of ur teaching.... I literallyy amazed after seeing ur video... I learned the enhanced perspective of learning of web development... Please sir made video fast
@chaiaurcode
@chaiaurcode Жыл бұрын
So nice of you, jldi hi laate h
@FaojulAzim-k1f
@FaojulAzim-k1f Ай бұрын
First of all I want to mention that the course is fire. So far, among all the courses I have taken this one has more in-depth concepts and I am really happy to find out that such free course exits. I would request Hitesh Sir to bring more courses like this in the future.
@shubhanshushrivastava7618
@shubhanshushrivastava7618 7 ай бұрын
16:30 Task-1 let interval_Variable; let myDate = new Date(); document.querySelector('#start').addEventListener('click',()=> { interval_Variable= setInterval(function(){ console.log('Hello Shubh', myDate.toLocaleString()); },10000) }) document.querySelector('#stop').addEventListener('click',()=> { clearInterval( interval_Variable); console.log('stopped'); })
@ihtapirt
@ihtapirt 4 ай бұрын
Hey Shubhanshu, I have an issue like the code I have posted below this reply, in that my code is running without error and my start and stop buttons are working but when I click the stop button clearInterval doesn't works. i want to know why ?
@ihtapirt
@ihtapirt 4 ай бұрын
Interval Example Kartikey Start Stop let k; let fStart = function() { console.log("Kartikey"); } const ks = function() { k = setInterval(fStart, 2000); } let s = function() { clearInterval(k); } document.querySelector('#start').addEventListener('click', ks); document.querySelector('#stop').addEventListener('click', s);
@Dev-Phantom
@Dev-Phantom 8 ай бұрын
wonderful lecture , very depth analysis , always asked in interviews these types of questions. one of the best lecture.
@_pankajuday
@_pankajuday Жыл бұрын
Ek esa yt channel jo javascript ka series pura vistrit rup se patha rahe hai. Aapko iske lie bahut bahut dhanyawad ❤❤😊
@chaiaurcode
@chaiaurcode Жыл бұрын
Is series se competition paid courses b nhi kr payenge
@devgauravjatt
@devgauravjatt Жыл бұрын
​@@chaiaurcodeyour theme font name ?
@saqibullah7286
@saqibullah7286 Жыл бұрын
@@chaiaurcode belkul Sir no doubt
@sachinandanprasad7618
@sachinandanprasad7618 Ай бұрын
love your clean way writing code
@PraveenKumar-24
@PraveenKumar-24 9 ай бұрын
Namaste Guruji, Thanks for your valuable knowledge and time..
@abheermehrotra329
@abheermehrotra329 2 ай бұрын
thank you so much for this playlist, I tried learning JS during btech, but didn't like it much. Now I am loving it
@waleedraja3566
@waleedraja3566 6 ай бұрын
one of the best channel for learning out standing i love it... big love big respect for you sir from pakistan. Task One Chai Or Javascript start stop const date = function(){ console.log("waleed", Date.now()); } document.querySelector('#start').addEventListener('click', function(){ const intervaled = setInterval(date ,1000); console.log("Start"); document.querySelector('#stop').addEventListener('click', function () { clearInterval(intervaled); console.log("Stop"); })})
@divyajyotibasu3001
@divyajyotibasu3001 9 ай бұрын
I think the 'Stop' button not 'seemingly' working at 29:10 is not because of indexId value being changed from null to the reference of setInterval() but because of that prior to clicking the 'Stop' button, the 'Start' button was clicked multiple times hence multiple setInterval() methods are running simultaneously. The indexId has the reference of only the last setInterval() and the references of the previously started intervals have been lost. Clicking on 'Stop' clears that process but the other prior started setIntervals continue to run hence it appears that 'Stop' did not work at all. The check if(!intervalId) ensures that if an interval is already executing, another interval should not start. Great series overall! Enjoyed watching and doing the projects myself alongside
@mukulKasana
@mukulKasana Ай бұрын
yes , brother you are right
@Dev-Phantom
@Dev-Phantom 8 ай бұрын
Awsome project on ( setTimeout and setInterval ) Never seen such interesting lecture with such indepth project.
@mohitpathak8020
@mohitpathak8020 Жыл бұрын
Love to listen your Hindi 😄, And Always exited to learn something new from your videos keep uploading ..
@prashantapandit7871
@prashantapandit7871 10 ай бұрын
Thank you Hitesh for making JS so simple for me. i have tried to create a greeting project using setInteval() below: Just wounding how's my coding structure looks like? Events Greet Start Greeting Stop Greeting let greet ; //start: function startGreet(){ greet = setInterval(function(a){ document.querySelector('#line').innerText = `${a} at ${Date.now()}`; }, 1000, 'Namaste'); // the third is the function parameter. } // Stop: function stopGreet(){ clearInterval(greet); document.querySelector('#line').innerText = 'Greet Stopped!'; // console.log(greet); } document.querySelector('#start').addEventListener('click', startGreet); document.querySelector('#stop').addEventListener('click', stopGreet);
@vanshbhatnagar1117
@vanshbhatnagar1117 4 ай бұрын
Sir , your teachingstyle are simplier and are just full of experience , i am understanding javascript now very well thank you so much sir
@nehabansal370
@nehabansal370 7 ай бұрын
Best series ever. Thanks a ton again
@AbhinavThatipally
@AbhinavThatipally 5 ай бұрын
Love you sir. Regret that KZbin didn't recommend this channel long ago. Thanks you for the playlist sir!
@anirbannath2636
@anirbannath2636 10 ай бұрын
The way u explain is fabolous , i dont think there are any other KZbinr related to programming who can even reach half of ur level on quality and explanation
@aryanbhatt5934
@aryanbhatt5934 3 ай бұрын
Hats off to you sir, I don't know how you make such hard topics this much easy. Wondering that how lucky would be those people who personally train under you in the company, so many like me are dreaming of to happen with us. Thank you so much for this precious knowledge.
@shubhamzingare4433
@shubhamzingare4433 Жыл бұрын
One of the best series he sir, mene jitani bhi js sikhi he aapse hee sikhi hain, ekdm fresher aaya tha me, aap aapka work kabhi roko mat ❤❤❤ Atleast koi toh he joh sochta he ki bhale students ke paas paise nahi he, phir bhi me padaunga, aapka ye motivation bohot sahi he. Kahi bhi other videos me jaao baki chize bohot hoti he bht aap baki baaten bhi JS ko context me leke karte ho ❤❤❤❤
@DevAbhinav
@DevAbhinav 6 ай бұрын
sir appne isme jo random color ke liye function likha tha woh maine first project mein bhi add kara tha khud se loop lga kar jisse hash ke random number se color lene ke liye. And you also add that same here. I never have this kind of feeling before. mujhe toh lga tha js muskil hai but yeh toh bhot assan banadi aapne . Thanks Sir 💌💌💌💌💌
@BioChemAcademy
@BioChemAcademy 7 ай бұрын
hi( Great content Hitesh, I hope more and more people find this amazing channel where you make things so easy to understand. When I was working on an app (MERN - Chat Application) I found these topics tricky because just a keyword await had so much power that it was not encrypting the passwords I was sending to the DB. After hours of debugging, it made me realize that I need to ..... cheeze itni easy hoti nahi jitni easy aap bana dete ho sir, I wish I found you during my clg time, but nevertheless I know u are here always to help us. Thanks you so much.)
@KruelGodGaming
@KruelGodGaming 7 ай бұрын
my man just gave away deep knowledge for free so that everyone can learn from it ..... hats off
@rohitkumarsingh6991
@rohitkumarsingh6991 5 ай бұрын
sir why have you used in project 5
@faizandarwesh9606
@faizandarwesh9606 2 ай бұрын
Great lecture. Thanks alot. I just had a query that if a user just click stop button for the very first time in that case intervalId is not assigned any value yet. So what will be the output in my case it gives undefined. So we need to handle that case too. Please provide your feedback on this. Thanks and wishes you great success ahead.
@SAFEERALAM-dd2ny
@SAFEERALAM-dd2ny 5 ай бұрын
We need more teachers like you ❤ .
@girdhar3224
@girdhar3224 4 ай бұрын
30:00 setting 𝙞𝙣𝙩𝙚𝙧𝙫𝙖𝙡𝙄𝙙 = 𝙣𝙪𝙡𝙡 is mandatory because if we don't do that and by any chance click start button twice then it will get stuck in infinite loop which can never be stopped (can be stopped by reloading page)
@-aarohi
@-aarohi Ай бұрын
but even if i set intervalId = null, then it still get stuck can only be stopped by reloading page
@giyasahmed5090
@giyasahmed5090 Жыл бұрын
Jabse apka series start kya js ka avi tak ka class bht easy lagne laga hai. U are awesome sir. 🎉🎉🎉🎉🎉.
@4120_PRATIKRATHOD
@4120_PRATIKRATHOD 7 ай бұрын
31:00 this moment is I know exactly what has happened -> Thik if you click the start button multiple times this will dispatch multiple setInterval functions and now if you click the stop button it has the latest/ last setInterval functions reference so that one will stop but since previous once are still there it will continue execution
@vedantpanchal1276
@vedantpanchal1276 Жыл бұрын
Sir, in the unlimited colors project i tried a very weird case where i clicked start button again after clicking the start button and after that the setinterval time increased and the color started to change very quickly and also the stop button "stopped" working. So i did a hack by disabling the start button after clicking once and enabling the button after stopping. I love your videos sir ❤. And also my by watching your videos my mind started to think about every type of user scenario. Thank you so much sir :)
@tajinder715
@tajinder715 Жыл бұрын
hey i would like to connect eith you. your discoed please!
@vedantpanchal1276
@vedantpanchal1276 Жыл бұрын
@@tajinder715username:- vedantpanchal
@teambaaz007
@teambaaz007 2 ай бұрын
Sir you are osm mene pehle bhi apki series' follow ki thi but thoda beginner tha to. Adhe raste Mai aakr me thoda smjh nhi paya tha but ab apke har ek project mene khud se bhi kiye hai help of you 😅 apka jo tarika h js pdhane ka voh kafi sahi h kafi jaldhi apne js ke fundamental and imp topics cover karwa diye thnk you so much sir ji mai apko LinkedIn par tag bhi krunga apse sikhe kuch project ko thoda aur change and kuch functionality aur add kr ke 😅
@sundaramsingh-e4i
@sundaramsingh-e4i 9 ай бұрын
16:50 const sayDate = function(str){ console.log(str, Date.now()); } const toStart = function(){ intervalId = setInterval(sayDate, 1000, "hi"); } const toStop = function(){ clearInterval(intervalId); } document.querySelector('#start').addEventListener('click', toStart); document.querySelector('#stop').addEventListener('click', toStop);
@Pain72
@Pain72 5 ай бұрын
You declear intervalid in toStart block then how can you access it on toStop block?
@Mani_shkr
@Mani_shkr 5 ай бұрын
right how is it possible?
@girdhar3224
@girdhar3224 4 ай бұрын
6:13 "kaafi der h" I didn't realise that until I did it myself Thank You sir🙏🙏
@rushidave7092
@rushidave7092 10 ай бұрын
16:30 Task: Async JavaScript Intervals Async project Start Stop document.querySelector("#start").addEventListener("click", function () { const start = function () { console.log("Rushi", Date.now()); }; const toStop = setInterval(start, 1000, (click = start)); document.querySelector("#stop").addEventListener("click", function () { clearInterval(toStop); }); });
@AB-sq2os
@AB-sq2os 9 ай бұрын
// i get to know about " (click=start)" from your code. thanks for that. but it still fail to run document.querySelector('#start'). addEventListener('click',function(){ const sayDate= function(){ console.log("Abhi", Date.now()); }; const intervalId= setInterval(sayDate, 2000, (click=start)); document.querySelector('#stop'). addEventListener('click', function(){ clearInterval(intervalId); }); )};
@rushidave7092
@rushidave7092 9 ай бұрын
@@AB-sq2os idk,but ur js code is looks ok,may be some other issues,Find out.
@saurabh7806
@saurabh7806 7 ай бұрын
@@AB-sq2os brackets are wrong on 2nd last line it should be })
@earlymorningcodes6100
@earlymorningcodes6100 7 ай бұрын
@@rushidave7092 const sidd=document.getElementById("hed") let start=document.getElementById("start") let stop=document.getElementById("stop") let stb function sid() { sidd.innerHTML="I am clicked 2 sec later" console.log("func executed",Date.now()) } // let clrts=setInterval(sid,2000) function Starttime() { if (!stb) { stb=setInterval(sid,1000) } console.log("start") } // let vishen=setInterval(sid,3000,(click=sid)) function clr() { clearInterval(stb) stb=null console.log("stop") } stop.addEventListener("click",clr) start.addEventListener("click",Starttime)
@AnujGupta-10
@AnujGupta-10 6 ай бұрын
bhai logic kaise build kia tumne iska . thoda bata do, merese logic hi nahi banta kabhi!!!!! 😭
@abuhurayra8429
@abuhurayra8429 Жыл бұрын
cheeze itni easy hoti nahi jitni easy aap bana dete ho sir, I wish I found you during my clg time, but nevertheless, I know u are here always to help us. Thanks you so much. (2)
@mehmoodhassan-m2z
@mehmoodhassan-m2z Жыл бұрын
Aslam o Alaikum.... your course is wonderful and *Allah* give you a long and healthy life
@technicalrider6196
@technicalrider6196 Жыл бұрын
no need ,Supreme God bless him,Jai Mahakal
@codeeasy419
@codeeasy419 Жыл бұрын
Yaha pe Allah kaha se aagye bhai.. ?? pdho gyan lo ar niklo, bakchodi krna jruri hai?
@Niteshmaurya1234
@Niteshmaurya1234 11 ай бұрын
Thank you so much sir dobara video shoot karne ke liye Thank you so much for your lots of efforts
@geekguri_tech
@geekguri_tech 9 ай бұрын
Great Projects Sir. Really great understanding and deep depth.
@VishwasKumar-oq3pb
@VishwasKumar-oq3pb 6 ай бұрын
For generating a random color i have used Rgb format and it is like this function r(){ let generate = Math.floor((Math.random()*256 +1)) return generate } function generateColor(){ let color = `rgb(${r()},${r()},${r()})` body.style.backgroundColor = color } start.addEventListener("click",()=>{ colorChange = setInterval(generateColor,1000) console.log(colorChange) }) stop.addEventListener("click",()=>{ clearInterval(colorChange) })
@MohammedHasmi577
@MohammedHasmi577 7 ай бұрын
18:18 sir thoda time laga but Maine khud se banaya ye project tumne suruvat se bola tha khud se kuch to banahi loge ye js se and I got it ❤❤
@AjayPandey-g6i
@AjayPandey-g6i Ай бұрын
25:38 Start and Stop ke liye maine ye wala approach use kiya :- const startChangingColor = function(){ document.body.style.backgroundColor = randomColors(); console.log(randomColors()); } startBtnEl.addEventListener("click", () =>{ interval = setInterval(startChangingColor, 1000) }) stopBtnEl.addEventListener("click",() =>{ if(interval){ clearInterval(interval); interval = null; console.log("STOPPED"); } else{ alert("PLEASE CLICK ON START BUTTON"); } })
@onkardheemate1066
@onkardheemate1066 Ай бұрын
🔥🔥🔥🔥🔥🔥 content will smash whole youtube
@adityayambal1756
@adityayambal1756 8 ай бұрын
sir best teacher ho aap kya padhate ho concepts acche se clear ho raha hai thank you and please make an series on anguler.js if you can.
@BitFire007
@BitFire007 7 ай бұрын
"Chai aur Code, your teaching style is a breath of fresh air. Thanks for making JavaScript a joy to learn!"
@learnprogram359
@learnprogram359 Жыл бұрын
thank you sir , bina dekhe project 6 main ne banaya ,aap ne jitna samjaya us ki help se.phali bar khud me confidence aarha hai because of you sir ,again thank you so much
@Find4You
@Find4You 7 ай бұрын
Time = 16:46 Task Start & Stop button const sayDate = function(str){ console.log(str, Date.now()); } let intervalId; // Declare intervalId outside event listeners const btnStart = document.querySelector("#start") btnStart.addEventListener('click', function(){ intervalId =setInterval(sayDate, 1000 , 'Hello') }) const btnStop = document.querySelector("#stop") btnStop.addEventListener('click', function(){ clearInterval(intervalId) })
@Pratikgabani
@Pratikgabani Ай бұрын
Sir ji app to bol dete hai ki share kro but ye itna precious resource hai ki agr share kiya to hume hi nuksaan hai , competition aur jyaada bdh jaaega. Ye to khud k pair pr hi kulhaadi marne wali baat ho jaaegi 😇. Correct me if I am wrong
@basimtanveerjutt6217
@basimtanveerjutt6217 2 ай бұрын
Sir your teaching skill is amazing
@karma97652
@karma97652 10 күн бұрын
haji completed ho gaya it's like JS in Next level
@Soumya.a923
@Soumya.a923 6 ай бұрын
Thankyou Hitesh sir, for giving such indepth series, After learning various courses from udemy and yt. I was not confident in js but after watching this series I have confidence that I can build something from my own! Thankyou so much. ❤
@oqant0424
@oqant0424 8 ай бұрын
12:44 enjoying the series a lot 💖
@chandanparida18
@chandanparida18 Жыл бұрын
Iss se behtar course lane main kisi ko 100 saal lag jayega, 😊 sayad uss se bhi jyada Just fabulous😊 course
@anasansari5038
@anasansari5038 Жыл бұрын
you are amazing sir, respect for you from bottom of my heart, one of your student from pakitsan
@yashjain5232
@yashjain5232 Жыл бұрын
hi sir, I think i have understood basic javascript syntax and also its real world usecase. I can build small projects like bmi calculator or normal calcuulator without reading documentation. But i am still not so confident about it. in one of the video harkirat bhaiya told that he made a flappy bird game in first year of his college to vuild confidence. I want to ask you that should i do the same in order to gain some more confident on vanilla JS or i should jump to react JS. if you suggest the former, should i do it with reading the documentation.
@bablubhaii927
@bablubhaii927 8 ай бұрын
Big Salute for your hard work sirji🙌
@ZoneFact_YT
@ZoneFact_YT 2 ай бұрын
Sir Hitesh is a wonderful experienced person.... If you want to be a developer then listen to sir Hitesh lectures ❤
@Oliver_Queen71
@Oliver_Queen71 7 ай бұрын
no one i repeat no one including the paid javaScript courses can teach you like Hitesh sir does ..........i am glad i found the best playlist and followed it to master the greatest language of internet
@shivaniverma4266
@shivaniverma4266 5 ай бұрын
thanks dubara video record krne k liye yeh js ka student apko thanks khta hai like the video also subscribe toh phle se hai !!!!!
@Sonal-om9gt
@Sonal-om9gt 4 ай бұрын
Your videos are very very helpful to us. thank you so much sir
@veenusnishad2453
@veenusnishad2453 4 ай бұрын
the random color generator code was awesome
@AnuragKumar-gf1pq
@AnuragKumar-gf1pq 8 ай бұрын
Best Async explanation. Best series
@notyogeshprakhar
@notyogeshprakhar 10 ай бұрын
sir , thanks for javascript series, i am learning a lot through this series
@rpvish9982
@rpvish9982 7 ай бұрын
I am learning before your channel but now watch only your video is very perfectly thank you so much for beginners sir 😊
@ashutoshrout287
@ashutoshrout287 3 ай бұрын
Thank You sir for this absolutely great course
@rohitsingh04141
@rohitsingh04141 7 ай бұрын
wonderful lecture , very depth analysis
@Legend-cn9zt
@Legend-cn9zt 7 ай бұрын
Best real teacher on KZbin
@vcuclutchyop5339
@vcuclutchyop5339 4 ай бұрын
12:54 yaha jo callback hai addeventlistner waala kya woh bhi callbackqueue se hote hue jaayega ? agar aisa hoga toh setTimeout clear he nahi hogya kyuki setTimeout callback queue mai first hoga
@deepakbdbg
@deepakbdbg Жыл бұрын
Aap jaise guru ka aashirvad mil jaie to kch v asambhav nahi ❤
@nextflix2.0
@nextflix2.0 8 ай бұрын
17:17 unlimited color switching project starts at this point of time 32:06 Keyboard check
@AkhileshKumar-xv2hr
@AkhileshKumar-xv2hr 8 ай бұрын
16:35 Start and Stop the setInterval by ownself is done by the help of given below code: document.querySelector('#start').addEventListener('click', function(){ const intervalid = setInterval(sayDate,1000,"hi") console.log('START'); document.querySelector('#stop').addEventListener('click', function(){ clearInterval(intervalid) console.log('STOPPED'); }) })
@richikbasu2506
@richikbasu2506 3 ай бұрын
this series is really underrated
@Tech_Life_2.0
@Tech_Life_2.0 Жыл бұрын
hum Java script ko kaise use karte hein website mein kafi time se KZbin per search kar rahe the lekin ab aapke channel mil gaye ab hum achhe se learn kar lenge thankyou so much sir 🎉🎉🎉🎉
@Rohithakur07
@Rohithakur07 8 ай бұрын
Thankyou so much sir for this premium content , mne phle kai teachers se js ko pda tha , lekin aap jesa koi nhi hai sir , you are great sir ❤❤❤
@Instrumentation010
@Instrumentation010 10 ай бұрын
Great Sir, there is no words to say about this amazing video.
@RagSingh-e2e
@RagSingh-e2e 7 ай бұрын
best Series ALL OVER The UNIVERSE, thank you Sir 🙏
@rajkiranchaudhary8769
@rajkiranchaudhary8769 11 ай бұрын
Hello Hitesh sir .. I was wondering whether we have async/await video in this series. It would be great if we could have that as well. Thank you for making such an awesome series.
@tusharsahu8831
@tusharsahu8831 2 ай бұрын
assingment solution::: const TOprint = function (str) { console.log(str + Date.now()); }; let printing; function start() { printing=setInterval(TOprint, 2000, "time is:"); } document.querySelector("#start").addEventListener("click",start); document.querySelector("#stop").addEventListener("click", function () { clearInterval(printing); });
@dynamiczonex
@dynamiczonex Жыл бұрын
Please continue this series because it helps lot me
@vpr17
@vpr17 10 ай бұрын
Easier way to get hex code: let color = "#" + Math.floor(Math.random()*(256*256*256)).toString(16)
@HeyIMSomnath
@HeyIMSomnath 5 ай бұрын
19:16 simple way to get random colors. function getColor() { let r = Math.floor(Math.random() * 255); let g = Math.floor(Math.random() * 255); let b = Math.floor(Math.random() * 255); let a = Math.random(); return `rgba(${r}, ${g}, ${b}, ${a})` } const start = document.getElementById('start'); const stop = document.getElementById('stop'); let interval; start.addEventListener('click', function () { interval = setInterval(function () { document.body.style.backgroundColor = getColor(); }, 1000); }); stop.addEventListener('click', function () { clearInterval(interval); });
@mitalichoudhary809
@mitalichoudhary809 6 ай бұрын
This is the best series. Reason being, you are not only teaching the concepts but also sharing their practical usage. It really helps a lot when it comes to when and where to implement these concepts. Thank you so much for all the effort.
@yks_257
@yks_257 3 ай бұрын
Sir, iss series main ek baar ye bata dete aap ache se ki..... API kya hota hai? Bootstrap, node js, react akhir hota kya hai? abhi tak sirf naam aur reference use horha hai inka but exactly hai kya?? kaise linked hai aur kyu? im sorry agr ye bhut basic doubt hai
@raginiroy9929
@raginiroy9929 21 күн бұрын
Api is nothing much but just like a waiter who takes order from you(customer) and then brings that order to you , similarly APIs have lot of data and they fullfill your request such as weather API, it brings you data about entire weather so for an instance if you want to use that data inside your web , you can use that API without worrying about from where the hell data is coming from . Likewise , while ordering food you didn`t even bothered to know if chefs/ ingredients are available. Bootstrap is for css, it makes css more easy to use ,can visit bootstrap official web or read docs or watch yt tutorial . nodeJs is basically for server side application programs (used in backend ) reactJs is for frontend just like js however, js can be used in backend as well. These all are linked since these are for learning web development (frontend+backend).Hope it helps mate:))
@todaysindia4114
@todaysindia4114 Жыл бұрын
Love you Sir,thank you so much for this type of videos ....
@smritiii7697
@smritiii7697 3 ай бұрын
sir i did the start and stop assignment, thank you
@bestahmadff580
@bestahmadff580 5 ай бұрын
Sir maine to aap ke banane se pahle hi try Kiya banane ko aur main bana bhi Diya But aap ka thanks idea ke liye
@afrazhussain3778
@afrazhussain3778 6 ай бұрын
Sir thanks for helping us a lot your videos are so great
@tech_channel110
@tech_channel110 Жыл бұрын
behtareen behtareen behtareen behtareen behtareen behtareen behtareen
API request and V8 engine | chai aur #javascript
30:34
Chai aur Code
Рет қаралды 150 М.
Promise in javascript | chai aur #javascript
50:21
Chai aur Code
Рет қаралды 283 М.
БОЙКАЛАР| bayGUYS | 27 шығарылым
28:49
bayGUYS
Рет қаралды 1,1 МЛН
$1 vs $500,000 Plane Ticket!
12:20
MrBeast
Рет қаралды 122 МЛН
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН
How to be a 10x Learner
17:41
Chai aur Code
Рет қаралды 115 М.
Async Javascript fundamentals | chai aur #javascript
19:12
Chai aur Code
Рет қаралды 199 М.
Events in Javascript | chai aur #javascript
36:57
Chai aur Code
Рет қаралды 231 М.
Master Async JavaScript: What it is and How to Use it
1:18:37
Sheryians Coding School
Рет қаралды 236 М.
Bind in javascript | chai aur #javascript
11:39
Chai aur Code
Рет қаралды 58 М.
Lexical scoping and Closure | chai aur #javascript
26:48
Chai aur Code
Рет қаралды 98 М.
5 Real-Life JavaScript Effects and Features That Reign Supreme! 👑🌐
1:49:31
Sheryians Coding School
Рет қаралды 415 М.
JavaScript Promises  -- Tutorial for Beginners
37:05
ColorCode
Рет қаралды 127 М.
БОЙКАЛАР| bayGUYS | 27 шығарылым
28:49
bayGUYS
Рет қаралды 1,1 МЛН