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. ✨
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)
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❤❤❤❤❤❤❤
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]; } }
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
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
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
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.
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
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 ❤❤❤❤❤
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...
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!
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.
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!
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 😊
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 RUclipsrs 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 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"
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 RUclipsrs 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.
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
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.
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 😊
6:37 actually I am doing the same mistake mai sidha Spotify clone banana chaha but logic ka khichdi ban gayi 😅 or Mera swapna Tut Gaya 😢 thank you for a beautiful video. Love from Bengal ❤️
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
Learning a programming language and solving leetcode questions is the easy to moderate part. The real difficulty starts when you try to build something like a Big software, App or website or Game or Backend that's where you learn and if you continue making those building projects after projects which they usually do in companies then then you *truly becomeTHE SOFTWARE ENGINEER*
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
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
Thank you.. vi It was really helpful. Don't stop teaching us.. there alway will be someone like me who will come and learn something from your lecture.
Hello, Hitesh sit, Whenever I want any advise on Programming, I open your channel, and in this video you mentioned "data flow" and I can relate that with my question, Currently I am doing my master's, I was working as a frontend developer but want to build my logic on backend side and In my classes I learned how to divide program in small part and how to go step by step in any programming and I feel its amazing, then I thought manybe this is pseudo code, but I haven't find any sources from that I learned to write program step by step, Can you please make video on this topic ? like if there is a simple program finding area of the room, then how can I start step by step from declaring variable to write methods and then implement that method, and understand data flow, I really confused and excited to learn programming like this. I wish you notice my comment and make video, and Thank you so much for teaching us.😊
Hi Sir, Thank you for taking your time and making these awesome content. Could you please make an english version of this particular logic building video. Thanks
1st step our teacher taught on college, some time i thought why do i need to do it by myself when we can run and easy to answer now i realize the value of doing using pen and paper, it's not even high end college i guess i learned something , even the college is not A graded
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 :-)
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. ✨
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❤
itni clarity se pehle kabhi kisi ne nahi samjhaya. thank you
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
दुल्हन वही जो पिया मन भाए
किताब वही जो समझ मे आए
Hitesh sir dhohe ke pure haqdaar hai
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.
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.
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];
}
}
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
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.
"Expertly breaks down logic building for programming beginners! Clear, concise, and engaging."
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
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
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 ❤❤❤
"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..
These five steps is very important for learning the programing🙂🙂🙂
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.
Innse acha koi nahi sikha sakta .........The way sir teaches is mindblowing
Sir data flow ko kaise smjhna hai debugging krke ?? Sir ye part bhi explain kriye ki samajhte kaise hai
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 ♥
Bahut hi sahi time pe video mila he...ty so much for this guidance...
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
What a pin point issue regarding students ...
So r such a best teacher ...great
Thank You Sir 🙏.I have Learned Many Things During My Current Coding Journey.
me first time programing ki video dekhate samay muskura raha tha grate video ☺
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.
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❤
Apne toh Logic build ho rahe hain....Sarana ke liye Dhanyawaad 🙏
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...
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!
"Clear and concise! This tutorial effectively explains how to build program logics. Highly recommended!"
He stands out as the wisest among all tech RUclipsrs, and we're grateful for his continuous video uploads.
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.
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!
"Clear and concise tutorial! Expertly breaks down building program logic into easy steps."
Hitesh sir big fan ..
I talked with you in a live class of PW skills that was my best moment till my 19 years❤
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 😊
"Clear, concise, and well-explained! Perfect for building programming logic skills."
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 RUclipsrs
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 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"
Sir jo bahut dhire se santi se bol rahe hai ,mujhe toh issi baat pai dil agaya❤
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
"Excellent tutorial! Clear, concise, and effectively explains how to build logic in programming."
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 RUclipsrs
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.
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
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.
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
Amazing thing is that you have blive i have unique technique of teaching skills and we love that.
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
6:37 actually I am doing the same mistake mai sidha Spotify clone banana chaha but logic ka khichdi ban gayi 😅 or Mera swapna Tut Gaya 😢 thank you for a beautiful video. Love from Bengal ❤️
sir, kitni badi bat, kitne simple way bol dali, thank u sir, sure ll follow that.
Thank you sir, ye problem mere saath v tha but ye video mere liye bahot beneficial rahega❤
Thankyou so much practical Steps 💯, We are Lucky to have a teacher like Hitesh Sir ❤️🙌
Hitesh sir aap itne down to earth kaise kaya rakhte hoo khud ko.
Huge respect sir❤.
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.
1:30 meme is so hilarious 😂😂😂😂😂😂
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 ??
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 😊
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
I regret finding you so late
Very helpful sir , I was also take todo lightly but now I got it where I made mistakes. Thakyou so much sir
hitesh sir is best in all things.....whether its teaching or giving advice suggestion motivation to the students...... thank you sir
sir i am following you since your bug bounty course, you are awesome sir
Video Editing ka level 🔥
Aap tagda hard work lagate ho video ke piche
Thank you 🙏
This Is why Hitesh Sir is a Teacher in YT, Not a Creator ❤
Thank you sir! You just turned my 2 years struggle into make it possible!❤
Learning a programming language and solving leetcode questions is the easy to moderate part. The real difficulty starts when you try to build something like a Big software, App or website or Game or Backend that's where you learn and if you continue making those building projects after projects which they usually do in companies then then you *truly becomeTHE SOFTWARE ENGINEER*
It's an art to state the obvious
Just wow.. the way you teach is phenomenal
It's too soothing...
thank you sirr!! aap ne to pura doubt hi khatam kar diya😌
bilkul sir aap aae ho to samjh to bilkul aaega he...
Your lectures are awesome, paying thanks across the border,
It's Great Video for all beginners, thank u so much sir.
❤❤ Sir acche se Smjh aa gaya Tq☺️🙏
Data flow is very important for a beginner.
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
Very very important video for coders Thank U very much sir
We are so Fortunate that we are living in Hitesh Sir Era
love uhh so much hitesh bro
❤❤Thank you so much sir for great information ❤❤
Most welcome
Thank you u just Change something in my logic very very thanks for that
Thanks Sir !!
your teaching and guidance are really helping me and making me better day-by-day.
I love the way you teach😀.
❤️
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
Hitesh Bhaiya you are a gem. the way to teach and explain that extremely phenomenal
Sir yahi msla hai react ata to syntax wagera smjh Sab mgr logic nai bn pata thanks for this video boht zrorat thi
Sir, thank you for providing us some valuable information.
Thank you.. vi It was really helpful. Don't stop teaching us.. there alway will be someone like me who will come and learn something from your lecture.
Thanks and I will try my best 😊☕️
you seems a nice person. Thanks for this video, I really appreciate.
You are giving some real serious advices. Love from Pakistan
Hello, Hitesh sit, Whenever I want any advise on Programming, I open your channel, and in this video you mentioned "data flow" and I can relate that with my question, Currently I am doing my master's, I was working as a frontend developer but want to build my logic on backend side and In my classes I learned how to divide program in small part and how to go step by step in any programming and I feel its amazing, then I thought manybe this is pseudo code, but I haven't find any sources from that I learned to write program step by step, Can you please make video on this topic ? like if there is a simple program finding area of the room, then how can I start step by step from declaring variable to write methods and then implement that method, and understand data flow, I really confused and excited to learn programming like this. I wish you notice my comment and make video, and Thank you so much for teaching us.😊
❤
Hope so i got reply this time.. i am much proud on you Hitesh sir .. alot of love from Pakistan ❤ Thankyou for everything
Hi Sir, Thank you for taking your time and making these awesome content. Could you please make an english version of this particular logic building video. Thanks
Thank you sir, please make more videos like this based on your experience.....
Sometimes some people says more than inoff, but sir only u gain a knowledge ,always more than inoff. ❤
I don't know how do you know what we need at this time. I am so grateful to you🥺🥺🥺
This provide me with the best among many lessons in my life ❤
thank you sir ek baar mein dimag mein baat aa gya thank you so much for this video sir!!
1st step our teacher taught on college, some time i thought why do i need to do it by myself when we can run and easy to answer now i realize the value of doing using pen and paper, it's not even high end college i guess i learned something , even the college is not A graded
finally someone answered the how question thanks 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 :-)