1. Data flow(Understand the data values at each step) 2.90-10 (teaching methodology ) 3.Understand TODO PROJECTS thoroughly 4.Added Values (Add some features from your own doesn't matters its small or big)
This is what I learnt from the video - Step 1. Data Flow (Analyze / Understand how data/values are changing at each step) unless and until you understand this completely don't even worry about logic building. You should exactly know what is happening at each step. Don't memorize, Just Understand. Step 2. (90-10 Teaching Method) - 2:33 Step 3. Build Basic To-Do Projects - Understanding foundation is essential... Don't overlook this step. This will become solid Base for your upcoming major projects. Step 4. Added Value - Once you gain confidance from building basic projects, now you are ready for adding new features and functionalities to those basic projects. You must add value to those basic projects by learning on your own. This will immensely boost your confidance once you succeed in this. and finally Now you become ready to go and build major projects.🔥🤟 But never forget mastering basic foundation is the key. ✨
Sir ji....mene to ummid hi chhod di thi programming ki jbse aapna ye chai aur code channal start hua h Tab se confidence level bhi up hua he Or intrest bhi improve hua he ab intzaar rhta h aapki aane wali har video ka bss......thank you very much sir kyuki phle bhrosa nahi tha khud par is is series ke bad bhrosa bhi h or ummid bhi h aapki react series krke jhldi se koi job mil jaye.... 😊❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤THANK YOU SIR..🎉🎉UMMID HE AAPKO PADH KAR ACHHA LGEGA❤❤❤❤❤❤❤
Stop mastering this worthless subject coding because it will take years to master and companies will still fire you at anytime so instead start preparing for govt job because govt job will never betray you and give you helping hand till your last breath!!! Many people regretting their decision to choose this field instead of preparing for a govt job but you have time quit this fake worthless field and start preparing for a GOVERNMENT JOB NOWWW OR YOU WILL BE REGRETTING TILL YOUR LAST BREATH
Are You f. Kidding🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣... He is so dumb that he tell everyone to learn this stupid technologies you will never get you a job that last 4 years and then you will be jobless for 6 years and never get a job so start preparing for a govt jov nowwwwwwwwwwwww of you willl be Regrate till your lifetime. you f. idiot
Truly sir i been asking the question of how can we build logic from past 6-8 months , finally my wait is over with a boon like a information from u. you are our online Harvard university of india sir🙏#chai_aur_code #desi_coding
learning js and react by watching your videos but struggling to solve problems or to implement logic then yesteday i was watching how to build logic and here you just made a video on this. it's good that the tutor i have been learning from uploads exactly what i needed. Thank you sir.
Great video , i just hope that you start a series on DSA too , we really need your insights on DSA , that would be like the most helpful thing to us . Thank you for you efforts
To build code logic of any program, you must learn concept of mathematics such as even or odd numbers or prime numbers. For mathematics in computer programming, you must know operators given below: Arithmetic Operators: + Addition 1+1=2 - Subtraction 2-1=1 * Multiplication 2*2=4 / Division 6/2=3 % Modulus if 6/2=3 then 6%2 is equal to 0 that means 6 is even number. if 7/2=3.5 and 3.5 is decimal value then 7%2 is not equal to 0 that means 7 is odd number Assignment Operator: int x = 10; x=x+5; // x=15 Comparison Operators: == Equal to if(x == y){}else{} != Not equal if(x != y){}else{} > Greater than if(x > y){}else{} < Less than if(x < y){}else{} if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else will execute Another syntax: if(){ } else if(){ } else{ } if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else if(){} will execute Google search how to find greatest number or calculate prime factor of a number. Read and understand from starting of JavaScript tutorials and check if variable declaration and initialization is useful in finding greatest number. Read and understand from JavaScript tutorials and check if arithmetic operator is useful in finding greatest number. Read and understand from JavaScript tutorials and check if relational operator is useful in finding greatest number and so on. Program 1 to find the greatest number from 3,1 and 5 given below: const arr = [3,1,5]; //arr[0]=3, arr[1]=1, arr[2]=5 var i=0; var greatest=arr[i]; //greatest=3 i=i+1; //i=1 if(greatest>arr[i]){ //if(3>1) }else{ } i=i+1; //i=2 if(greatest>arr[i]){ //if(3>5) }else{ greatest=arr[i]; //greatest=5 } Program 2 using loop to find the greatest number from 3,1 and 5 given below: const arr = [3,1,5]; var i=0; var greatest=arr[i]; // while loop is executed 2 times because we have written i=i+1 and if(){}else(){} 2 times //previous in Program 1 given above while(iarr[i]){ } else{ greatest=arr[i]; } }
Sir, today before watching this video i just created a kind of small kind of pop up navigation bar by myself, And your this video now motivated me to do more experiments whatever comes to mind. Thank you sir for this video. Keep guiding us like this . Lots of love ❤ and respect 🫡 to you.
Apka content itna acha hota hai ki aisa lagta hai mai seekhne ke sath sath meditation kar rha hu ❤❤you are so cool sir 🙏 tareef karne ke liye mere pas word kam pad rhe hain ek word me bolunga - Bahutttt Achaaaa!
Sir you are one of the teacher who teaches me JavaScript.... mai drta tha javascript se mai javascript pdh k 4 days me backend sikh liya....aur 1 chota sa project bna diya.....Love u ❤❤❤❤❤
How soft and polite speaker you are literally whether i am understanding whatever you are delivering or not i just focus on listening to you😅 keep it up bro 😊
Aap jo bhi kahe hai 101% satat hai sir because aapko experience 😊 please guide right path sir I humble request sir for all devloper students 😊thank you so much
01:16 Follow these 5 steps to improve your logical thinking 02:32 Understanding data flow is key to giving instructions to a computer. 03:48 Focus on data flow 05:04 90-10 teaching is an important concept for effective learning 06:20 Start with small improvements in what you learn from TH-camrs 07:36 To-do's are the foundation of any project and should not be taken lightly. 08:52 Start with adding value to projects to build confidence in programming 10:04 Build confidence to effectively manipulate and inject code into projects.
right advice! please make a same next video on how to dubug code in company and understand large codebases, also how to learn new things/keywords in same language which we use day-to-day for our project...
01:16 Follow these 5 steps to improve your logical thinking 02:32 Understanding data flow is key to giving instructions to a computer. 03:48 Focus on data flow 05:04 90-10 teaching is an important concept for effective learning 06:20 Start with small improvements in what you learn from TH-camrs 07:36 To-do's are the foundation of any project and should not be taken lightly. 08:52 Start with adding value to projects to build confidence in programming 10:04 Build confidence to effectively manipulate and inject code into projects.
sir to be very honest ap se padhne ka baad ak alag level ka confidence generate hota hai ap ka videos mai sirf lectures hi nhi ak energy hoti hai jo enchance krte hai mujhe k aage karo aage badho thank you so much sir 😊
advice 1 and 3 are so crucial. at times we think implementing such and such for loop/foreach loop is a piece of cake. in reality, it is not. and only when faced with bugs and logical errors (and the dreaded index out of range) do we realize how much we messed up. dry run is at times mundane and time taking but we don't realize how much time it actually saves. secondly, it has been an issue with me that once i have built a simple to-do list or anything simple for that matter, i tend to ignore it thinking its too simple. but then when i move to a complicated project, i realize how difficult its solving it would be. i would add dividing the bigger problem into smaller pieces and then solving them incrementally, and this can be applied to any problem, no matter the scale. Otherwise, this is such a crucial advice. thank you!
Gajab sir, sach mein ye video mere thinking power boost karega...Hume to sab chiz rataya jata hai,,ye loop ye karta hai bs ye kaise hota ye nhi pata . But Aaj se ye kaise hota bs yahi sikhna hai i..e Data flow. Thank you for sharing this information.
sir G mai same to same wahi complex projects youtube dak ka practice kr rai tia lakin tabhi apka video muja deka. " thanks sir apka video nai mara time bacha leya"
I am truly inspired by sir hitesh exceptional ability to make the complex world of programming logic not only understandable but also fascinating through their engaging lectures . ap hamaray guru hay guru ap hamesha salamat rahay zindagiya jiye
Ha ji guru jee bhut kuch chorke aaye hai delhi yahi sikhne ke lia but problem bhut hoti hai jb hoti hai mn krta hai chorde sab kuch Aapki video bhut bhut help full hai Allah bless you ❤❤❤❤❤❤
Maulana Mazharul Haque Patna University pass out hai hai Front-end development fr problem hai job nhi mil rahi bhut jagah gya jaha paisa mang rahe ek jagah gya tha intrv ke lia 20k demad kiye tut gya hai aadmi yaarbye sab se
Hey Bhaiya ! aapne acche se smjhaaya you gave the "Saar " to and i will make myself a good proagrammer not a bot form today's onwards i will follor channel and you tutorials as well mere placement nazdik hai mujhe kuch nahi aata i agree but phir bhi i will start from day 0 to 180 days just for a change to become a software developer like you
Hello Sir! Thank you for providing us such a premium content for free, Sir I'm ur biggest fan from Pakistan, You are my favourite teacher on youtube, 'coz u teach how to learn a concept, I'm learning JS from you and I'd want to learn more from you! Sir it would be a great favour if u use some urdu words along with hindi in video editing so that ur viewers from Pakistan who don't know hindi can also read the content on the videos easily :-)
sirr mujhe bahot stressed he mein bhi khudse logic build ni kr paa rahi. meine apki reactjs ki playlist se ki thi but me khudse jb khudse code krne jati me blank ho jati hun😭😭
Try to understand the basic fundamentals step by step what language in you are, and then, search in GPT give me a beginner level practice question to solve, try to solve it, for example I am not abel to solve Q.3, then ask GPT to explain me in easy way break by break, then u will understand step by step, Coding is like you are doing GYM, it is not easy to handle a high weight as a beginner we have to be consistent to do practice step by step , Hope this will help you. ✨
Same here but break it down to kitna level tak horaha hay and uske aage ku nahi horaha. There will be logic gap after a level for me as a beginner i can solve loops and basic but new problems its hard so i watch shorts for that logic topic to understand theory then use theory to write codes by myself and then chatgpt to correct the codes and understand the logic. We all can do everything in this world with patience snd consistency. Consistency beats courage any day
Amazing Conclusion men..Super Content...utter realistic and practical approach Of Data Flow n To Do's on Every Single topic of basics up to you can feel confident like give me anything i will play with it ..regards
Understand small projects Add value [try to add a small feature from your side] it will help you to make your foundation strong and help in increasing confidence.
1. Data flow(Understand the data values at each step)
2.90-10 (teaching methodology )
3.Understand TODO PROJECTS thoroughly
4.Added Values (Add some features from your own doesn't matters its small or big)
Thanks ❤
Tnx 😍😍
@ShubhamRai send your LinkedIn id
Thnxx❤❤❤
Thanks brother❤
This is what I learnt from the video -
Step 1. Data Flow (Analyze / Understand how data/values are changing at each step) unless and until you understand this completely don't even worry about logic building. You should exactly know what is happening at each step. Don't memorize, Just Understand.
Step 2. (90-10 Teaching Method) - 2:33
Step 3. Build Basic To-Do Projects - Understanding foundation is essential... Don't overlook this step. This will become solid Base for your upcoming major projects.
Step 4. Added Value - Once you gain confidance from building basic projects, now you are ready for adding new features and functionalities to those basic projects. You must add value to those basic projects by learning on your own. This will immensely boost your confidance once you succeed in this. and finally Now you become ready to go and build major projects.🔥🤟
But never forget mastering basic foundation is the key. ✨
itni clarity se pehle kabhi kisi ne nahi samjhaya. thank you
दुल्हन वही जो पिया मन भाए
किताब वही जो समझ मे आए
Hitesh sir dhohe ke pure haqdaar hai
faltu ka gyan na deke 5 steps . sir g aapke point to point smjhane ka method aur clear cut bolne ka method se apn fan bnn gye aapke😀
He is my uncle 😊
Well done
@@MdRizwan_351he is my baap
Sir ji....mene to ummid hi chhod di thi programming ki jbse aapna ye chai aur code channal start hua h
Tab se confidence level bhi up hua he Or intrest bhi improve hua he ab intzaar rhta h aapki aane wali har video ka bss......thank you very much sir kyuki phle bhrosa nahi tha khud par is is series ke bad bhrosa bhi h or ummid bhi h aapki react series krke jhldi se koi job mil jaye.... 😊❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤THANK YOU SIR..🎉🎉UMMID HE AAPKO PADH KAR ACHHA LGEGA❤❤❤❤❤❤❤
मेरा नाम Gourav है,और मै इंदौर (म.प्र) से हूँ।
@@gouravnayarIndorewale hi gourav me too indore.
We are so Fortunate that we are living in Hitesh Sir Era❤
Hitesh sir can you guide me how to starting building to do list
Stop mastering this worthless subject coding because it will take years to master and companies will still fire you at anytime so instead start preparing for govt job because govt job will never betray you and give you helping hand till your last breath!!! Many people regretting their decision to choose this field instead of preparing for a govt job but you have time quit this fake worthless field and start preparing for a GOVERNMENT JOB NOWWW OR YOU WILL BE REGRETTING TILL YOUR LAST BREATH
Agree++
Are You f. Kidding🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣... He is so dumb that he tell everyone to learn this stupid technologies you will never get you a job that last 4 years and then you will be jobless for 6 years and never get a job so start preparing for a govt jov nowwwwwwwwwwwww of you willl be Regrate till your lifetime. you f. idiot
8:48 Bro you concluded my 3 years of full stack development career in such simple words... you are amazing
i want some guidance please help
@@rohanpaul7657koi nhi krega bhai koi nahi... Mai bhi aise hi puchta rehta hu sbse.
@@rohanpaul7657 kya help chajiye bro batao
@@Ameyiscool puchta kyu hai jab koi nahi krta
@@_abhishekpal sab swarthi nahi hote na koi bhala insaan guidance kar skta hai.
Truly sir i been asking the question of how can we build logic from past 6-8 months , finally my wait is over with a boon like a information from u. you are our online Harvard university of india sir🙏#chai_aur_code #desi_coding
learning js and react by watching your videos but struggling to solve problems or to implement logic then yesteday i was watching how to build logic and here you just made a video on this. it's good that the tutor i have been learning from uploads exactly what i needed. Thank you sir.
Great video , i just hope that you start a series on DSA too , we really need your insights on DSA , that would be like the most helpful thing to us .
Thank you for you efforts
Thank u sir bilkul sahi time video daala sir aapne
Mujhse ni ho paa raha tha
Mera man tha coding quit kr du
Thank u sir ❤❤❤
"Expertly breaks down logic building for programming beginners! Clear, concise, and engaging."
"Clear, concise explanations! This tutorial effectively breaks down building program logics in an engaging way."
Apake har vedio me ek learning hamesha milati aur wo hai patience..
I think we are in hurry to complete it rather than enjoying and learning..
To build code logic of any program, you must learn concept of mathematics such as even or odd numbers or prime numbers. For mathematics in computer programming, you must know operators given below:
Arithmetic Operators:
+ Addition 1+1=2
- Subtraction 2-1=1
* Multiplication 2*2=4
/ Division 6/2=3
% Modulus if 6/2=3 then 6%2 is equal to 0 that means 6 is even number. if 7/2=3.5 and 3.5 is decimal value then 7%2 is not equal to 0 that means 7 is odd number
Assignment Operator:
int x = 10;
x=x+5; // x=15
Comparison Operators:
== Equal to if(x == y){}else{}
!= Not equal if(x != y){}else{}
> Greater than if(x > y){}else{}
< Less than if(x < y){}else{}
if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else will execute
Another syntax:
if(){
}
else if(){
}
else{
}
if statement condition is true then then program inside if(){} will execute but if statement condition is false then program inside else if(){} will execute
Google search how to find greatest number or calculate prime factor of a number. Read and understand from starting of JavaScript tutorials and check if variable declaration and initialization is useful in finding greatest number. Read and understand from JavaScript tutorials and check if arithmetic operator is useful in finding greatest number. Read and understand from JavaScript tutorials and check if relational operator is useful in finding greatest number and so on. Program 1 to find the greatest number from 3,1 and 5 given below:
const arr = [3,1,5]; //arr[0]=3, arr[1]=1, arr[2]=5
var i=0;
var greatest=arr[i]; //greatest=3
i=i+1; //i=1
if(greatest>arr[i]){ //if(3>1)
}else{
}
i=i+1; //i=2
if(greatest>arr[i]){ //if(3>5)
}else{
greatest=arr[i]; //greatest=5
}
Program 2 using loop to find the greatest number from 3,1 and 5 given below:
const arr = [3,1,5];
var i=0;
var greatest=arr[i];
// while loop is executed 2 times because we have written i=i+1 and if(){}else(){} 2 times //previous in Program 1 given above
while(iarr[i]){
}
else{
greatest=arr[i];
}
}
Sir, today before watching this video i just created a kind of small kind of pop up navigation bar by myself,
And your this video now motivated me to do more experiments whatever comes to mind.
Thank you sir for this video. Keep guiding us like this . Lots of love ❤ and respect 🫡 to you.
Hitesh sir big fan ..
I talked with you in a live class of PW skills that was my best moment till my 19 years❤
me first time programing ki video dekhate samay muskura raha tha grate video ☺
Apka content itna acha hota hai ki aisa lagta hai mai seekhne ke sath sath meditation kar rha hu ❤❤you are so cool sir 🙏 tareef karne ke liye mere pas word kam pad rhe hain ek word me bolunga - Bahutttt Achaaaa!
Loved this video sir... I was struggling to code but i think i got something from this video to improve thank you sir a lot❤
Innse acha koi nahi sikha sakta .........The way sir teaches is mindblowing
These five steps is very important for learning the programing🙂🙂🙂
Bahut hi sahi time pe video mila he...ty so much for this guidance...
js slap really felt hard at my face i am 33 and just started it is really complex thank you very much for your support love form pakistan ♥
Sir you are one of the teacher who teaches me JavaScript....
mai drta tha javascript se mai javascript pdh k 4 days me backend sikh liya....aur 1 chota sa project bna diya.....Love u ❤❤❤❤❤
Hope i can also do it.
What a pin point issue regarding students ...
So r such a best teacher ...great
How soft and polite speaker you are literally whether i am understanding whatever you are delivering or not i just focus on listening to you😅 keep it up bro 😊
1:30 meme is so hilarious 😂😂😂😂😂😂
Apne toh Logic build ho rahe hain....Sarana ke liye Dhanyawaad 🙏
Aap jo bhi kahe hai 101% satat hai sir because aapko experience 😊 please guide right path sir I humble request sir for all devloper students 😊thank you so much
01:16 Follow these 5 steps to improve your logical thinking
02:32 Understanding data flow is key to giving instructions to a computer.
03:48 Focus on data flow
05:04 90-10 teaching is an important concept for effective learning
06:20 Start with small improvements in what you learn from TH-camrs
07:36 To-do's are the foundation of any project and should not be taken lightly.
08:52 Start with adding value to projects to build confidence in programming
10:04 Build confidence to effectively manipulate and inject code into projects.
right advice! please make a same next video on how to dubug code in company and understand large codebases, also how to learn new things/keywords in same language which we use day-to-day for our project...
"Clear and concise! This tutorial effectively explains how to build program logics. Highly recommended!"
"Clear and concise tutorial! Expertly breaks down building program logic into easy steps."
Thank You Sir 🙏.I have Learned Many Things During My Current Coding Journey.
"Clear, concise, and well-explained! Perfect for building programming logic skills."
He stands out as the wisest among all tech TH-camrs, and we're grateful for his continuous video uploads.
01:16 Follow these 5 steps to improve your logical thinking
02:32 Understanding data flow is key to giving instructions to a computer.
03:48 Focus on data flow
05:04 90-10 teaching is an important concept for effective learning
06:20 Start with small improvements in what you learn from TH-camrs
07:36 To-do's are the foundation of any project and should not be taken lightly.
08:52 Start with adding value to projects to build confidence in programming
10:04 Build confidence to effectively manipulate and inject code into projects.
This Is why Hitesh Sir is a Teacher in YT, Not a Creator ❤
I regret finding you so late
Sir data flow ko kaise smjhna hai debugging krke ?? Sir ye part bhi explain kriye ki samajhte kaise hai
"Excellent tutorial! Clear, concise, and effectively explains how to build logic in programming."
sir to be very honest ap se padhne ka baad ak alag level ka confidence generate hota hai ap ka videos mai sirf lectures hi nhi ak energy hoti hai jo enchance krte hai mujhe k aage karo aage badho thank you so much sir 😊
nhhhh jeee mai nii manta
Sir jo bahut dhire se santi se bol rahe hai ,mujhe toh issi baat pai dil agaya❤
advice 1 and 3 are so crucial.
at times we think implementing such and such for loop/foreach loop is a piece of cake. in reality, it is not. and only when faced with bugs and logical errors (and the dreaded index out of range) do we realize how much we messed up. dry run is at times mundane and time taking but we don't realize how much time it actually saves.
secondly, it has been an issue with me that once i have built a simple to-do list or anything simple for that matter, i tend to ignore it thinking its too simple. but then when i move to a complicated project, i realize how difficult its solving it would be.
i would add dividing the bigger problem into smaller pieces and then solving them incrementally, and this can be applied to any problem, no matter the scale.
Otherwise, this is such a crucial advice. thank you!
Gajab sir, sach mein ye video mere thinking power boost karega...Hume to sab chiz rataya jata hai,,ye loop ye karta hai bs ye kaise hota ye nhi pata . But Aaj se ye kaise hota bs yahi sikhna hai i..e Data flow. Thank you for sharing this information.
sir G mai same to same wahi complex projects youtube dak ka practice kr rai tia lakin tabhi apka video muja deka.
" thanks sir apka video nai mara time bacha leya"
One line touches me, that is confidence, I am lacking in confidence, If I have confidence I have done alot of things... Thank you Brother
I am truly inspired by sir hitesh exceptional ability to make the complex world of programming logic not only understandable but also fascinating through their engaging lectures .
ap hamaray guru hay guru
ap hamesha salamat rahay
zindagiya jiye
Thank you sir, ye problem mere saath v tha but ye video mere liye bahot beneficial rahega❤
thank you sirr!! aap ne to pura doubt hi khatam kar diya😌
Great Sir , Sir you actually figure out the beginners nervous system That's why your teaching style is so visualizable , imaginable thanks a lot sir
Thankyou so much practical Steps 💯, We are Lucky to have a teacher like Hitesh Sir ❤️🙌
Thank you sir you made me read documentation, basically you thought me how to learn, the mindset, thanks a lot ❤, I'll meet you someday 😊
sir i am following you since your bug bounty course, you are awesome sir
Hitesh sir aap itne down to earth kaise kaya rakhte hoo khud ko.
Huge respect sir❤.
We are so Fortunate that we are living in Hitesh Sir Era
love uhh so much hitesh bro
hitesh sir is best in all things.....whether its teaching or giving advice suggestion motivation to the students...... thank you sir
It's an art to state the obvious
Amazing thing is that you have blive i have unique technique of teaching skills and we love that.
sir, kitni badi bat, kitne simple way bol dali, thank u sir, sure ll follow that.
Thanku so much sir for the video, I was demotivated since few days because I was not able to solve the problem, but your video saved me.
Ha ji guru jee bhut kuch chorke aaye hai delhi yahi sikhne ke lia but problem bhut hoti hai jb hoti hai mn krta hai chorde sab kuch
Aapki video bhut bhut help full hai
Allah bless you ❤❤❤❤❤❤
Kis college se ho bhai
Maulana Mazharul Haque Patna University pass out hai hai Front-end development fr problem hai job nhi mil rahi bhut jagah gya jaha paisa mang rahe ek jagah gya tha intrv ke lia 20k demad kiye tut gya hai aadmi yaarbye sab se
@@shakilansari4325aapko DSA nahi aata ??
❤❤ Sir acche se Smjh aa gaya Tq☺️🙏
Hey Bhaiya ! aapne acche se smjhaaya you gave the "Saar " to and i will make myself a good proagrammer not a bot form today's onwards i will follor channel and you tutorials as well mere placement nazdik hai mujhe kuch nahi aata i agree but phir bhi i will start from day 0 to 180 days just for a change to become a software developer like you
Video Editing ka level 🔥
Aap tagda hard work lagate ho video ke piche
Thank you 🙏
Thank you sir! You just turned my 2 years struggle into make it possible!❤
Hope so i got reply this time.. i am much proud on you Hitesh sir .. alot of love from Pakistan ❤ Thankyou for everything
Hitesh Bhaiya you are a gem. the way to teach and explain that extremely phenomenal
Very very important video for coders Thank U very much sir
Purai TH-cam pai bs ek halla hai... Hitesh sir Hitesh Sir ..❤
Just wow.. the way you teach is phenomenal
It's too soothing...
हां जी, मुझे आपकी वीडियो अच्छी लगी 😁😊❤
It's Great Video for all beginners, thank u so much sir.
Thank you so much sir for this video 🥰🥰🥰🥰🥰
i wish i would have followed you from starting because each thing i have seen now in this video, has took so long for me too realise and implement
❤❤Thank you so much sir for great information ❤❤
Most welcome
Very helpful sir , I was also take todo lightly but now I got it where I made mistakes. Thakyou so much sir
Hello Sir!
Thank you for providing us such a premium content for free,
Sir I'm ur biggest fan from Pakistan,
You are my favourite teacher on youtube, 'coz u teach how to learn a concept,
I'm learning JS from you and I'd want to learn more from you!
Sir it would be a great favour if u use some urdu words along with hindi in video editing so that ur viewers from Pakistan who don't know hindi can also read the content on the videos easily :-)
Data flow is very important for a beginner.
Your lectures are awesome, paying thanks across the border,
Sirji aap to best hoh😊
@1:29 Epic😂👌
sirr mujhe bahot stressed he mein bhi khudse logic build ni kr paa rahi. meine apki reactjs ki playlist se ki thi but me khudse jb khudse code krne jati me blank ho jati hun😭😭
Then coding is not for you if you tried multiple times.
Try other technologies you are passionate about so much
Try to understand the basic fundamentals step by step what language in you are, and then, search in GPT give me a beginner level practice question to solve, try to solve it, for example I am not abel to solve Q.3, then ask GPT to explain me in easy way break by break, then u will understand step by step, Coding is like you are doing GYM, it is not easy to handle a high weight as a beginner we have to be consistent to do practice step by step , Hope this will help you. ✨
Same here but break it down to kitna level tak horaha hay and uske aage ku nahi horaha. There will be logic gap after a level for me as a beginner i can solve loops and basic but new problems its hard so i watch shorts for that logic topic to understand theory then use theory to write codes by myself and then chatgpt to correct the codes and understand the logic.
We all can do everything in this world with patience snd consistency. Consistency beats courage any day
To meditate first
Aap so jao
No one can teach us like you sir ❤
I love your way to teach, Thank you teacher ♥☺
thank you sir ek baar mein dimag mein baat aa gya thank you so much for this video sir!!
Mast ha video 😅😅😅❤ edit
Amazing Conclusion men..Super Content...utter realistic and practical approach Of Data Flow n To Do's on Every Single topic of basics up to you can feel confident like give me anything i will play with it ..regards
All i feel sir pehle kyu nhi mile ap. Glad i found your channel finally🙃
I don't know how do you know what we need at this time. I am so grateful to you🥺🥺🥺
You are giving some real serious advices. Love from Pakistan
bilkul sir aap aae ho to samjh to bilkul aaega he...
Sometimes some people says more than inoff, but sir only u gain a knowledge ,always more than inoff. ❤
Understand small projects
Add value [try to add a small feature from your side]
it will help you to make your foundation strong and help in increasing confidence.
When I watch your video, sukoon sa milta ha.❤
There are some best video makers on TH-cam and Hitesh sir is one of them ❤❤✌️✌️
Thanks Sir !!
your teaching and guidance are really helping me and making me better day-by-day.
I love the way you teach😀.
❤️
Your way of talking and the way of giving knowledge is very nice its giving me confidence ❤
Glad to hear that
@@chaiaurcodesir aapne bola aapka bootcamp aapka training me things complex karwate hai aisa...aapke.koi paid courses /boot camp hao kya pls reply