Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry Bhai ❤❤🎉
❤Mai Padunga Or Padungi ❤❤❤😂😂 Pad Raha hu Or Pad Rahi hu😂😂😂😂😂😂 Thanks for Notes Brother Or Tau Or Gau ki Jamin Aap ke Nam Kar. Di hai Aaap Ka Angutha Lagana Baki #ShigmaBatchOp
I am so grateful to Harry sir for offering a web development course that was worth every penny. He taught me everything I need to know about Javascript, css, html, and other web technologies. His notes are clear, concise, and easy to follow. I will study them diligently and apply them to my own projects. Thank you, Harry sir, for sharing your knowledge and passion with us!
Halfway through Harry's JavaScript course on TH-cam and I'm absolutely loving it! Clear explanations, engaging presentation, practical examples, and progressive difficulty make it a must-watch for anyone learning JavaScript. Highly recommend! 🚀
Brother Love From Pakistan, and Apka mene pehly Wala Course Kya tha 3 years pehly aj mn Frontend Developer Hun React and ab mn duabra course kr rha hun Because Bht Sii Cheezien Update Hui hain or ab mjhy react complete seekhni h redux ky sth or next js bhi, Brother Kindly Give Me a Heart ❤❤
00:01 Loops in JavaScript are used for repetitions 02:16 JavaScript loops help in performing repetitive tasks 04:06 Explanation of how a for loop works in JavaScript with an example 06:03 JavaScript loops execute code repeatedly until a certain condition is met 08:06 Understanding JavaScript loops and the 'for...in' and 'for...of' syntax 09:44 The while loop in JavaScript executes a block of code repeatedly as long as the specified condition is true. 11:52 Be careful with while loops as they can create infinite loops. 13:45 The video explains the concept of JavaScript loops, particularly the do-while loop. 15:33 Thank you for watching this video
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry Bhai
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry sir.
🎯 Key Takeaways for quick navigation: 00:00 🔄 *Basics of JavaScript Loops* - Introduction to the need for loops in JavaScript. - Explaining the limitations of manually repeating tasks. - Mentioning the different types of loops in JavaScript: for, forEach, for/of, while, and do/while. 01:18 🤖 *Setting up Loop Tutorial* - Creating a new folder and JS file for the loop tutorial. - Writing a basic HTML structure and focusing on the VS Code setup. - Prompting viewers to like and comment on the video for engagement. 01:57 🔄 *Understanding For Loops in JavaScript* - Demonstrating a simple for loop and its syntax. - Emphasizing the repetitive nature of for loops. - Highlighting potential issues with manual repetition and code hanging. 02:40 🔄 *Five Types of JavaScript Loops* - Listing the five types of loops in JavaScript: for, forEach, for/of, while, and do/while. - Briefly explaining the purpose of each type. - Setting the stage for a detailed exploration of each loop type in subsequent sections. 03:07 🔄 *Introduction to For Loop in JavaScript* - Explanation of the classical for loop construct in JavaScript. - Demonstrating the basic syntax of the for loop with an example. - Highlighting the role of the loop index variable (i) and its initialization. 03:21 🔄 *Navigating For Loop Syntax* - Navigating the for loop syntax using arrow keys and explaining options. - Discussing the possibility of using variable names instead of the index. - Encouraging viewers to experiment with different variations. 03:34 🔄 *Running For Loop Tutorial* - Demonstrating the manual typing of the for loop in VS Code. - Running the code and showing the loop in action. - Emphasizing the ease of using VS Code's auto-completion features. 04:03 🔄 *Dynamic Index and Array Access in For Loop* - Utilizing an array with a dynamic length in the for loop. - Explaining the logic of accessing array items using the loop index. - Encouraging viewers to understand how the loop iterates through array elements. 04:16 🔄 *Closing the Loop and Running the Code* - Demonstrating how to close and run the dynamic for loop. - Showing the code execution for iterating over numbers 1 to 100. - Emphasizing the simplicity and efficiency of using loops in programming. 04:31 🔄 *Loop Execution Process and Condition Check* - Detailing the execution process of the for loop. - Discussing how the loop condition (i < 100) is checked. - Emphasizing the iterative nature of the loop until the condition is false. 04:45 🔄 *Loop Iteration and Value Update* - Walkthrough of each iteration, showing how i and a + i values evolve. - Explaining the logic of printing a + i for each iteration. - Encouraging viewers to understand the flow of loop execution and value updates. 04:59 🔄 *Single Run through For Loop* - Summarizing the entire process in a single run through the for loop. - Reinforcing the concept of initialization, condition checking, and value updates. - Encouraging viewers to grasp the essence of how loops work in JavaScript. 06:04 🔄 *For Loop Basics* - For loop structure and execution explained, - `for` loop initializes, checks a condition, and updates in each iteration, - Demonstrated a basic `for` loop running from 0 to 100. 07:01 🔄 *Statements in For Loop* - Explanation of three statements in a `for` loop: initialization, condition, and update, - Emphasized the importance of avoiding infinite loops, - Illustrated the working of statements in a `for` loop with practical code examples. 08:08 🔄 *For-In Loop Basics* - Introduction to the `for-in` loop for iterating over object properties, - Utilizing the `for-in` loop to iterate through key-value pairs in an object, - Illustrated the use of the `for-in` loop with a practical example using object properties. 08:50 🔄 *Introduction to For-Of Loop* - Explanation of the `for-of` loop, - Demonstrated using the `for-of` loop to iterate through characters in a string, - Highlighted the simplicity of the `for-of` loop for iterating over iterable data structures. 09:57 🔄 *Remembering Object Types for For-In Loop* - Emphasis on remembering object types suitable for the `for-in` loop, - Used the `for-in` loop to iterate through key-value pairs in an object, - Shared a mnemonic for remembering the use of `for-in` with objects. 10:11 🔄 *Introduction to While Loop* - Introduction to the `while` loop and its importance, - Illustrated the basic syntax of the `while` loop, - Showcased a practical example of using the `while` loop to iterate with a condition. 11:32 🔄 *While Loop with Increment* - Demonstrated a `while` loop with an incrementing condition, - Explained how the loop condition determines the number of iterations, - Highlighted the flexibility of the `while` loop for various looping scenarios. 11:45 🔄 *Caution with While Loop Conditions* - Emphasized the importance of careful condition setup in the `while` loop, - Demonstrated the impact of an infinite loop and the need for a well-defined condition, - Advised users to be cautious while using `while` loops to avoid unintended infinite iterations. 12:30 🔄 *Introduction to Do-While Loop* - Introduced the less commonly used `do-while` loop and its syntax, - Discussed why developers often avoid `do-while` due to potential complications, - Shared scenarios where a `do-while` loop might be appropriately used. 13:49 🔄 *Do-While Loop in Action* - Demonstrated the practical use of the `do-while` loop, - Illustrated the difference in behavior compared to other loops, - Highlighted the simplicity and effectiveness of the `do-while` loop in specific situations. 14:30 🧠 *Encouragement and Goal Setting* - Encouraged viewers to comment and engage with the content, - Stressed the importance of having a positive mindset and learning attitude, - Emphasized achieving personal goals Made with HARPA AI
Really Interesting and worth it course. I wish this course was lunched in 2021, 2022 because that time I was learning web dev. for all new people who want to learn web dev then this is one of the best and worthy course. Respect You Harry Bhai
Aj pakistan main election hai or main ye dek raha hu . 08/02/2024 time - 05:08 Yane ab ginte strt hogai hoge Bus is umaid se dakte hai k ik din ham b ye sub ache tarah sikenge ln Shallah😊😊. Thanks for Sir Harry 😍
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry Bhai 😇😇
"Harry, sir, thank you very much for your unwavering consistency and dedication in keeping this course free and putting in so much effort for us❣. Your commitment to excellence makes you not only the best but also an inspiration to us all."🔥
00:01 Loops in JavaScript are used for repetitions 02:16 JavaScript loops help in performing repetitive tasks 04:06 Explanation of how a for loop works in JavaScript with an example 06:03 JavaScript loops execute code repeatedly until a certain condition is met 08:06 Understanding JavaScript loops and the 'for...in' and 'for...of' syntax 09:44 The while loop in JavaScript executes a block of code repeatedly as long as the specified condition is true. 11:52 Be careful with while loops as they can create infinite loops. 13:45 The video explains the concept of JavaScript loops, particularly the do-while loop. 15:33 Thank you for watching this video Crafted by Merlin AI.
#SigmaBatchOP #JavaScriptOP I am reading your notes to learn and understand logic. Every day i try to study from your notes. it's vary helpful thankyou ❤
Thank you very much, sir. You're a very kind person and an excellent teacher. I've become a fan of yours and I'm very grateful for your free course and for helping me understand things so well. Thank you very, very much.
The dark reality of coding is not all coders get success, in this tech world , bcoz Ai ! Knows everything , this is reason to get replaced many of peoples in Tech field , But thanks alot of You Harry bhai 💝 you are with us & helping and supporting begginers in this situation to keep grow , We cry , We try But never lose Hope!
Well somebody is defin. messing with your views, cause this course is very good and people are not watching. This doesn't happen, your content/course is very good sir/bhaiya. People need to watch and support this series.
Yes harry bhai I am reading your notes daily asper videos and also I am doing practice Questions written in the notes thanks to you for providing us free resources 🥰🥰🥰🥰
Guys please achi lage toh like, share or comment kar diya karo yeh itni mehnat se padhate hain or logo ko paise deke course karte ho yeh toh achi quality and free resource tum tak provides karvate hain toh please like, share , subscribe kar diya kro 🙏❤❤
Thank harry bhai for the content and notes as well . the notes is really helpful and after this course ends, am really exicted to see myself as full-stack developer, we have come so far, i can see my progess and thank to you harry bhai
5:36 Harry bhai i++ ke bare me btaya hi nahi aapne pichhli video me. Pichhli kuchh videos me bhi apne kuchh explanation adhuri chhod di hai. Mujhe pehle se hi ata hai is liye mujhe to smj agya pr I am sure newbie person jisne kbhi coding kri hi nhi hai usko kyi jgah pareshani hui hogi smjhane me. Its a feedback agr aap kabhi paid course launch kre in future to esa mtt krna apko average rating milegi vrna. Otherwise being free I appreciate this course so so much. I even wrote "Thank You" comment in your almost every video till this video. Thank You for the this course.
Pure BCA main char languages phade par sab bekar laga pata nhi kyu but 4th sem main jab web dev aya toh kuch use case dikha but phir 5th sem main python aya and again momentum toot gaya ab phir se web dev seekh raha hu and I am loving it aur seekh ke rahunga ❤❤ it's been a tough journey but NEVER GIVING UP
If not today, it will be tomorrow when this course will fly like a rocket.
Thanks for explaining Loops in such a easy way
@CRSuper. Members ke liye available hote h custom emojis
@CRSuper. Members ke liye available hote h custom emojis
@@Vilakshan_palok
Or Member ka or kiya kiya paida ha??
Or kitna Paiso sa Membership kharidno ga?..🤔
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry Bhai ❤❤🎉
If not today, it will be tomorrow when this course will fly like a rocket.
❤Mai Padunga Or Padungi ❤❤❤😂😂 Pad Raha hu Or Pad Rahi hu😂😂😂😂😂😂 Thanks for Notes Brother Or Tau Or Gau ki Jamin Aap ke Nam Kar. Di hai Aaap Ka Angutha Lagana Baki #ShigmaBatchOp
@@vishvjeetmore7532 ❤🔥❤🔥❤🔥❤🔥
@@vishvjeetmore7532 bhai kaha tak hua tera coding me
I am so grateful to Harry sir for offering a web development course that was worth every penny. He taught me everything I need to know about Javascript, css, html, and other web technologies. His notes are clear, concise, and easy to follow. I will study them diligently and apply them to my own projects. Thank you, Harry sir, for sharing your knowledge and passion with us!
That course is better from many paid courses ❤
All please request Harry sir to create official COde with Harry Discrd Server
Oyee Harry ( Haris Ali Khan ) ye kya bol raha he ise seriousely lelo 😋 @@gauravde2960
true:)
Halfway through Harry's JavaScript course on TH-cam and I'm absolutely loving it! Clear explanations, engaging presentation, practical examples, and progressive difficulty make it a must-watch for anyone learning JavaScript. Highly recommend! 🚀
Your course are priceless , your effort ,your style of teaching are just amazing . A big thank you for teaching us and giving valueable content : )
Mai ek programmer hu...aur aapki videos mujhe aur aacha programmer bnne mai help krti hai... Dhanyawad ❤
He is very loyal with his subs. :) Love U HarryBhai !
I read your notes more than one time❤
Harry sir is emotion after heartbreak of final only Harry sir course heal me ❤
I think this is the best Web Development course on Internet. Thanks Harry bhai. You are helping people from all over the world. Love from Pakistan
Wonderful , Keep up Harry! We really needed this course , been following it since the start .
Brother Love From Pakistan, and Apka mene pehly Wala Course Kya tha 3 years pehly aj mn Frontend Developer Hun React and ab mn duabra course kr rha hun Because Bht Sii Cheezien Update Hui hain or ab mjhy react complete seekhni h redux ky sth or next js bhi, Brother Kindly Give Me a Heart ❤❤
00:01 Loops in JavaScript are used for repetitions
02:16 JavaScript loops help in performing repetitive tasks
04:06 Explanation of how a for loop works in JavaScript with an example
06:03 JavaScript loops execute code repeatedly until a certain condition is met
08:06 Understanding JavaScript loops and the 'for...in' and 'for...of' syntax
09:44 The while loop in JavaScript executes a block of code repeatedly as long as the specified condition is true.
11:52 Be careful with while loops as they can create infinite loops.
13:45 The video explains the concept of JavaScript loops, particularly the do-while loop.
15:33 Thank you for watching this video
Tank you so mruch❤❤❤
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry Bhai
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry sir.
🎯 Key Takeaways for quick navigation:
00:00 🔄 *Basics of JavaScript Loops*
- Introduction to the need for loops in JavaScript.
- Explaining the limitations of manually repeating tasks.
- Mentioning the different types of loops in JavaScript: for, forEach, for/of, while, and do/while.
01:18 🤖 *Setting up Loop Tutorial*
- Creating a new folder and JS file for the loop tutorial.
- Writing a basic HTML structure and focusing on the VS Code setup.
- Prompting viewers to like and comment on the video for engagement.
01:57 🔄 *Understanding For Loops in JavaScript*
- Demonstrating a simple for loop and its syntax.
- Emphasizing the repetitive nature of for loops.
- Highlighting potential issues with manual repetition and code hanging.
02:40 🔄 *Five Types of JavaScript Loops*
- Listing the five types of loops in JavaScript: for, forEach, for/of, while, and do/while.
- Briefly explaining the purpose of each type.
- Setting the stage for a detailed exploration of each loop type in subsequent sections.
03:07 🔄 *Introduction to For Loop in JavaScript*
- Explanation of the classical for loop construct in JavaScript.
- Demonstrating the basic syntax of the for loop with an example.
- Highlighting the role of the loop index variable (i) and its initialization.
03:21 🔄 *Navigating For Loop Syntax*
- Navigating the for loop syntax using arrow keys and explaining options.
- Discussing the possibility of using variable names instead of the index.
- Encouraging viewers to experiment with different variations.
03:34 🔄 *Running For Loop Tutorial*
- Demonstrating the manual typing of the for loop in VS Code.
- Running the code and showing the loop in action.
- Emphasizing the ease of using VS Code's auto-completion features.
04:03 🔄 *Dynamic Index and Array Access in For Loop*
- Utilizing an array with a dynamic length in the for loop.
- Explaining the logic of accessing array items using the loop index.
- Encouraging viewers to understand how the loop iterates through array elements.
04:16 🔄 *Closing the Loop and Running the Code*
- Demonstrating how to close and run the dynamic for loop.
- Showing the code execution for iterating over numbers 1 to 100.
- Emphasizing the simplicity and efficiency of using loops in programming.
04:31 🔄 *Loop Execution Process and Condition Check*
- Detailing the execution process of the for loop.
- Discussing how the loop condition (i < 100) is checked.
- Emphasizing the iterative nature of the loop until the condition is false.
04:45 🔄 *Loop Iteration and Value Update*
- Walkthrough of each iteration, showing how i and a + i values evolve.
- Explaining the logic of printing a + i for each iteration.
- Encouraging viewers to understand the flow of loop execution and value updates.
04:59 🔄 *Single Run through For Loop*
- Summarizing the entire process in a single run through the for loop.
- Reinforcing the concept of initialization, condition checking, and value updates.
- Encouraging viewers to grasp the essence of how loops work in JavaScript.
06:04 🔄 *For Loop Basics*
- For loop structure and execution explained,
- `for` loop initializes, checks a condition, and updates in each iteration,
- Demonstrated a basic `for` loop running from 0 to 100.
07:01 🔄 *Statements in For Loop*
- Explanation of three statements in a `for` loop: initialization, condition, and update,
- Emphasized the importance of avoiding infinite loops,
- Illustrated the working of statements in a `for` loop with practical code examples.
08:08 🔄 *For-In Loop Basics*
- Introduction to the `for-in` loop for iterating over object properties,
- Utilizing the `for-in` loop to iterate through key-value pairs in an object,
- Illustrated the use of the `for-in` loop with a practical example using object properties.
08:50 🔄 *Introduction to For-Of Loop*
- Explanation of the `for-of` loop,
- Demonstrated using the `for-of` loop to iterate through characters in a string,
- Highlighted the simplicity of the `for-of` loop for iterating over iterable data structures.
09:57 🔄 *Remembering Object Types for For-In Loop*
- Emphasis on remembering object types suitable for the `for-in` loop,
- Used the `for-in` loop to iterate through key-value pairs in an object,
- Shared a mnemonic for remembering the use of `for-in` with objects.
10:11 🔄 *Introduction to While Loop*
- Introduction to the `while` loop and its importance,
- Illustrated the basic syntax of the `while` loop,
- Showcased a practical example of using the `while` loop to iterate with a condition.
11:32 🔄 *While Loop with Increment*
- Demonstrated a `while` loop with an incrementing condition,
- Explained how the loop condition determines the number of iterations,
- Highlighted the flexibility of the `while` loop for various looping scenarios.
11:45 🔄 *Caution with While Loop Conditions*
- Emphasized the importance of careful condition setup in the `while` loop,
- Demonstrated the impact of an infinite loop and the need for a well-defined condition,
- Advised users to be cautious while using `while` loops to avoid unintended infinite iterations.
12:30 🔄 *Introduction to Do-While Loop*
- Introduced the less commonly used `do-while` loop and its syntax,
- Discussed why developers often avoid `do-while` due to potential complications,
- Shared scenarios where a `do-while` loop might be appropriately used.
13:49 🔄 *Do-While Loop in Action*
- Demonstrated the practical use of the `do-while` loop,
- Illustrated the difference in behavior compared to other loops,
- Highlighted the simplicity and effectiveness of the `do-while` loop in specific situations.
14:30 🧠 *Encouragement and Goal Setting*
- Encouraged viewers to comment and engage with the content,
- Stressed the importance of having a positive mindset and learning attitude,
- Emphasized achieving personal goals
Made with HARPA AI
1:26 intro to loops
3:11 simple (classical) for loop
7:03 for in loop
9:07 for of loop
10:07 while loop
12:21 do while loop
14:17 notes
All please request Harry sir to create official COde with Harry Discrd Server
Really Interesting and worth it course. I wish this course was lunched in 2021, 2022 because that time I was learning web dev.
for all new people who want to learn web dev then this is one of the best and worthy course.
Respect You Harry Bhai
Sir We appreciate your work so much, We will always support you 🙏
Every concept gets easily crystal clear
Yes iam reading notes daily as per video...... Uploaded
Aj pakistan main election hai or main ye dek raha hu .
08/02/2024 time - 05:08
Yane ab ginte strt hogai hoge
Bus is umaid se dakte hai k ik din ham b ye sub ache tarah sikenge ln Shallah😊😊.
Thanks for Sir Harry 😍
Sir ek hi dil hai kitne baar jeetoge
Infinite loop running
😂😂😂@@djrahul1698
❤< unlimited . 😂😂😂
No uni no institute no paid course.Just looking sigma course it's just looking like wow . Best teaching method❤❤
your notes are really very helpful...thank you so much for providing the best resources❤❤
hi
#SigmaBatchOp
This course is going superB....You are the hope for programmers like us...May Allah give you a long life Haris vai..🥰
WHAT IS HARIS, FOOLISH
@@codewithdhairya1193 How much you know about him, his name? Donkey...
Bhaiya aapke hand written notes bahut helpful he thank you bhaiya
Harry Bhai I am also watching your web development series ❤
This course will change my life
Harry Bhai I am also watching your web development series ❤
Harry bhai pls start the app development series as soon as I am waiting for its ❤❤
Sir we are very lucky we are getting a paid course for free this is an honour from you. Hope everyone should understand how much effort you are giving in this course to make it, to edit and to be consistent while uploading the course. Thank you Harry Bhai 😇😇
People who have watched 100 days of code😎😎
No one is interested in python 🐍🐍
@@dikshasbotique6172true
Everyone is interested in python language 100 days of code level op
@@dikshasbotique6172 ❤
@@suficonstructionservices55no one
I already read your notes before it was awesome and to the point, which helped me a lot to understand the concepts of JavaScript.
"Harry, sir, thank you very much for your unwavering consistency and dedication in keeping this course free and putting in so much effort for us❣. Your commitment to excellence makes you not only the best but also an inspiration to us all."🔥
All please request Harry sir to create official COde with Harry Discrd Server
Best copies the G.O.A.T
you May don't know THE G.O.A.T
this is the best course of web dev
Mai padunga aur notes bhi download kar liye hain
🌟🌟🌟🌟🌟 bhai bahot sahi course hai jisne dekh kar bhi nahi start kiya vo khud ke par per kulahdi maar raha hai
16/01/2025
This course World best course to me❤❤❤❤❤❤❤❤❤❤❤
A big thank you for making this amazing course free!!
Congrats for 5 million in advance!
best course ever i had seen bro your doing a great job keep it
mein apka Notes se Padhai bhi kar raha hun Bade bhai 😊😊😊😊😊😊😊😍😍😍😍 Thank You Bhaiya
Yes harry bhayi, we are reading , learning,practicing..Thankyou a Big Thankyou...keep it going please....
Harry sir ka course sabse best❤
Harry bhai honesty is 100% about remembring syntax 9:40
The outro music pumps you up for the next vid ... What a course budd !!!
00:01 Loops in JavaScript are used for repetitions
02:16 JavaScript loops help in performing repetitive tasks
04:06 Explanation of how a for loop works in JavaScript with an example
06:03 JavaScript loops execute code repeatedly until a certain condition is met
08:06 Understanding JavaScript loops and the 'for...in' and 'for...of' syntax
09:44 The while loop in JavaScript executes a block of code repeatedly as long as the specified condition is true.
11:52 Be careful with while loops as they can create infinite loops.
13:45 The video explains the concept of JavaScript loops, particularly the do-while loop.
15:33 Thank you for watching this video
Crafted by Merlin AI.
literally bro i am writing your notes on a separate notebook thank you so much❤️
Me padhunga harry bhai... you are a very good teacher
Bro you are best teacher that I can ever get….ur really cool…..
Thanks for explaining Loops in such a easy way
Sigma Batch OP. Lots of Love for you Harish Ali Khan Sir.
I read your notes many times & its premium .....
#SigmaBatchOP #JavaScriptOP
I am reading your notes to learn and understand logic. Every day i try to study from your notes. it's vary helpful thankyou ❤
Excellent spirit Harry sir, Hats off to you!!!!!
Your sigma course on web development is OP🔥🔥🔥🔥🔥🔥
Aur haan main aapke notes jarur padunga👍
14:17 mai padunga
Actually padh Raha hu.
This course is starting to get serious. Love your work brother.
thanks for this amazing course harry bhaiya ❤🙌
Thank U Harry Sir
We Glad To Learn This Free Course❤💯
Padha bhi 2 baar dekha bhi 2 baar harry bhai ❤
Bahut achhe sir thank you so much Harry sir I'm happy sir aap achha samjha dete hai
Thank you so much sir 🙏 for this course
I m glad that I found your channel
Bro right now i'm at phase where i can easily design the pages for website and this is because of you bro! you are Greate.
Thank you very much, sir. You're a very kind person and an excellent teacher. I've become a fan of yours and I'm very grateful for your free course and for helping me understand things so well. Thank you very, very much.
The dark reality of coding is not all coders get success, in this tech world , bcoz Ai ! Knows everything , this is reason to get replaced many of peoples in Tech field , But thanks alot of You Harry bhai 💝 you are with us & helping and supporting begginers in this situation to keep grow , We cry , We try But never lose Hope!
Thankyou very very much pyary bhai ❤
Well somebody is defin. messing with your views, cause this course is very good and people are not watching. This doesn't happen, your content/course is very good sir/bhaiya. People need to watch and support this series.
14:21 bhai for sure padhenge baith kar . thank you harry bhai for the notes and for this course
#sigmabatchop #javascriptop
A1 video of an A! course
Lecture successfully completed on 21/11/2024 🔥🔥
Padh liya notes aur questions bhi solve kar liye 👍👍
Yes, I read and revison everyday like html , css and javaScript notes.
great tutorial ❤❤
Thank you Harry bhai , bich m consistency break ho gayi thi but now I am again continuing and jaldi hi aapke recent video pr aaungi
bhai bol dia
yes harry bhai mein inshallah apkay saaray notes parhunga
❤️🙏
Sigma Batch OP
❤️🙏
Tutorial - 57 Done ✅
#SigmaBatchOP #HarryBhai
Thank you ❤ Harry bhai for this amazing course
Yes harry bhai I am reading your notes daily asper videos and also I am doing practice Questions written in the notes thanks to you for providing us free resources 🥰🥰🥰🥰
Guys please achi lage toh like, share or comment kar diya karo yeh itni mehnat se padhate hain or logo ko paise deke course karte ho yeh toh achi quality and free resource tum tak provides karvate hain toh please like, share , subscribe kar diya kro 🙏❤❤
I WILL STUDY TOMORROW. THANK YOU SIR FOR THIS PRECIOUS COURSE🤍
Bilkul padhunga sir.
loved the intro man
Thank harry bhai for the content and notes as well . the notes is really helpful and after this course ends, am really exicted to see myself as full-stack developer, we have come so far, i can see my progess and thank to you harry bhai
5:36 Harry bhai i++ ke bare me btaya hi nahi aapne pichhli video me. Pichhli kuchh videos me bhi apne kuchh explanation adhuri chhod di hai. Mujhe pehle se hi ata hai is liye mujhe to smj agya pr I am sure newbie person jisne kbhi coding kri hi nhi hai usko kyi jgah pareshani hui hogi smjhane me. Its a feedback agr aap kabhi paid course launch kre in future to esa mtt krna apko average rating milegi vrna. Otherwise being free I appreciate this course so so much. I even wrote "Thank You" comment in your almost every video till this video. Thank You for the this course.
ye course agle 10 years ke liye best course rhne wala hai.
14:26
Mai zaroor notes padhungi. Thank you so much for this course.
#SigmaBatchOP 😎😎
Bhai ek baat kahe....YOU ARE A GEM❤❤✨️✨️🦋🦋❣️❣️
definitely printing out that sheet
I already read,
While doing your ultimate javascript course
Pure BCA main char languages phade par sab bekar laga pata nhi kyu but 4th sem main jab web dev aya toh kuch use case dikha but phir 5th sem main python aya and again momentum toot gaya ab phir se web dev seekh raha hu and I am loving it aur seekh ke rahunga ❤❤ it's been a tough journey but NEVER GIVING UP
Sigma Batch OP !!!!!!!
❤❤❤
Nhi Sir hm padh rhe aapke notes 📝📝 practice ke sath sath, and thank you❤ for your freely uploded notes 📝 your website 🙏🙏
14:29 me padhuga
Sigma batch OP ❤❤🔥🔥
U are absolutely great sir ❤🎉🎉 you cleared my lots of doubts thank u sir😊
I will Study the Notes , Amazing Course
I will definitely read those note...and copy in my book to
This course is helpful❤❤