JavaScript Advance Crash Course: Level Up Your Coding Skills! Accelerate Your Front-End Mastery!

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ก.ค. 2024
  • Are you ready to take your JavaScript skills to the next level? Look no further! Join our JavaScript Advance Crash Course and catapult your coding prowess to new heights in no time. In this fast-paced, power-packed video series, you'll learn advanced techniques and concepts that will elevate your front-end development skills to a whole new level.
    From mastering complex JavaScript functions and working with advanced DOM manipulation to understanding asynchronous programming and harnessing the power of APIs, this crash course covers it all. We'll guide you through practical examples and real-world projects, ensuring you gain hands-on experience that will solidify your understanding.
    Accelerate your front-end mastery as we delve into topics like closures, prototypes, promises, and much more. Our concise and focused approach ensures that you'll grasp the essential concepts quickly, allowing you to apply them immediately in your projects.
    Don't miss out on this opportunity to level up your coding skills in a flash. Enroll in our JavaScript Advance Crash Course today and witness your front-end development journey skyrocket! Get ready to unlock the full potential of JavaScript and become a true coding superhero!
    Instructor in this video: Harsh Sharma
    Visit our website: sheryians.com/
    Socials:
    Instagram: / sheryians_coding_school
    Facebook: / sheryians.community
    Telegram: t.me/sheryiansCommunity
    LinkedIn: / the-sheryians-coding-s...
    Discord: / discord
    Peace ✌️
    #javascript #frontend #coding #frontenddevelopment #javascripttraining #webdevelopment #javascriptmastery #handsonlearning #codingjourney #javascriptbasics #javascripttutorial #programming #webdevelopment #javascriptcode #learnjavascript #codingjourney
    ===========================================
    Timestamps:
    0:00 - 3:42 - Intro
    3:43 - 11:13 - 1st Difference b/w Var, Let, Const
    11:44 - 15:10 - 2nd Difference b/w Var, Let, Const
    15:11 - 26:40 - 3rd Difference b/w Var, Let, Const
    17:30 - 24:46 - Window Object
    24:47 - 27:34 - Browser Context API
    27:48 - 28:40 - Stack
    28:41 - 30:50 - Heap Memory
    30:51 - 39:56 - Execution Context
    39:57 - 41:38 - Lexical Environment
    41:46 - 47:34 - How to copy reference values
    47:39 - 52:43 - Truthy vs Falsy
    52:44 - 53:28 - Switch Case
    53:45 - 1:01:22 - ForEach Loop
    1:01:23 - 1:05:47 - For in Loop
    1:05:49 - 1:07:23 - Do While Loop
    1:09:44 - 1:19:25 - Callback Function
    1:19:26 - 1:23:42 - First Class Functions
    1:23:43 - 1:27:00 - How Arrays are made behind the scenes, How we can make negative indexes arrays in JS
    1:27:26 - 1:28:10 - How to delete Object Prop

ความคิดเห็น • 4.1K

  • @sheryians
    @sheryians  ปีที่แล้ว +725

    Hello Dosto, thodi si glti hogayi stack waale part mein, agle video mein dhang se clear krunga ❤

    • @mr.bteln.2040
      @mr.bteln.2040 ปีที่แล้ว +11

      wanna ask aap offline batches dete hainn ?

    • @mr.bteln.2040
      @mr.bteln.2040 ปีที่แล้ว +4

      aur abhi operate konse city se kre hain

    • @Ayaan722
      @Ayaan722 ปีที่แล้ว +12

      @@mr.bteln.2040 bhopal mai hai unki coaching aur mai bhi jaata hu unki coaching full stack web ke batch mai hu

    • @subhashmadaan8599
      @subhashmadaan8599 ปีที่แล้ว +9

      Sir yes I want to take part in the competition

    • @ganeshghode5595
      @ganeshghode5595 ปีที่แล้ว +12

      Sir
      make A Mern stack Development course At 999/-

  • @depth304
    @depth304 4 หลายเดือนก่อน +47

    0:00 - 3:42 - Intro
    3:43 - 11:13 - 1st Difference b/w Var, Let, Const
    11:44 - 15:10 - 2nd Difference b/w Var, Let, Const
    15:11 - 26:40 - 3rd Difference b/w Var, Let, Const
    17:30 - 24:46 - Window Object
    24:47 - 27:34 - Browser Context API
    27:48 - 28:40 - Stack
    28:41 - 30:50 - Heap Memory
    30:51 - 39:56 - Execution Context
    39:57 - 41:38 - Lexical Environment
    41:46 - 47:34 - How to copy reference values
    47:39 - 52:43 - Truthy vs Falsy
    52:44 - 53:28 - Switch Case
    53:45 - 1:01:22 - ForEach Loop
    1:01:23 - 1:05:47 - For in Loop
    1:05:49 - 1:07:23 - Do While Loop
    1:09:44 - 1:19:25 - Callback Function
    1:19:26 - 1:23:42 - First Class Functions
    1:23:43 - 1:27:00 - How Arrays are made behind the scenes, How we can make negative indexes arrays in JS
    1:27:26 - 1:28:10 - How to delete Object Prop

  • @NoTimeWaste1
    @NoTimeWaste1 3 หลายเดือนก่อน +35

    Here are my notes, I hope it will somehow help others:
    ### JavaScript Advance Crash Course:
    1. JavaScript has two version es5 (Older) and es6 (Newer).
    es5 includes → var
    es6 includes → var, let, const
    2. var is function scoped, means that - if you declared var anywhere in the function scope, you can easily access it within the function scope anywhere.
    3. let is braces is scoped, you can access let variable within only the braces and not outside of it.
    4. There are some features that we can use in JavaScript, that is not included in JavaScript but it can be still used and those features are called as ‘window’. And those features are provided by the browser.
    - var adds itself to window object. [It’s window and not windows]
    - let and const don’t add themselves to window object.
    5. If you open console, and type window on it and hit enter. You can see the declared var variables inside it, which was the security concern. While on the other hand const and let don’t show their variable values inside the window object, which also one of the few reasons why it’s used more than var declaration.
    6. When browser provide 3 features and they are called as browser context API.
    The 3 features are:
    - Windows
    - Stack
    - Heap Memory
    7. Stack: LIFO (Last In, First Out).
    8. Heap Memory: Intermediate data which is generated during the process is stored in the Heap Memory.
    9. Whenever function runs, it creates and execution context. Execution context is basically an imaginary box which contain variable, function under the parent function and lexical environment of that function.
    10. Lexical environment basically act as scope. It tells which function can access which functions variable, like a scope chain. A child can access his parents variable, but a parent can’t access that child's variable, because that parent function is not declared inside the child function.
    11. To copy the reference values we use Spread syntax (...) to do it.
    12. Falsy: 0 undefined null Nan document.all
    Truthy: Besides all of the Falsy values, everything is Truthy.
    13. forEach act as a loop, which iterate over each value in an array. And because it iterate over each value in array, you can perform all of the operation related to array & iteration, like adding the original value with another value etc.
    One thing to remember is forEach make changes in the array values, but the original array values never get changed. It creates its own temporary copy to perform the operations.
    14. forin act as a loop, which iterate over each value in an object.
    15. do-while: firstly perform the operation then check the condition.
    16. Callback function: It basically sets an time limit, and after that time limit a particular task or function gets executed only if the task inside that function is completed otherwise it will keep waiting until the task inside that function is completed, and after it’s completed it will basically print it out on the screen.
    17. First class functions: You can store functions inside an variable.
    18. Arrays in JavaScript are technically Objects. Where objects key acts as arrays index and it’s value as arrays value. And because of this property, you can create an negative index in array and assign it a value.
    19. To delete an obj, write delete.keyName;

  • @relaxationmusic2157
    @relaxationmusic2157 7 หลายเดือนก่อน +54

    Tera padhane ki tarika unique hai aur badiya hai, don't change the way you teach.

  • @manasranjanpanda228
    @manasranjanpanda228 ปีที่แล้ว +476

    I think you have explained 10% of your knowledge. We have no problem if you make 10 hours video also. Please make a detailed video for Ajax. Your explanation is fabulous sir. You earned a student...❤❤

    • @abdul78183
      @abdul78183 ปีที่แล้ว +10

      Great explanation and thanks for solving my loop problem.

    • @amitpatel0716
      @amitpatel0716 ปีที่แล้ว +15

      Are bhai yesa mat bolo diamond ko parakhna sabko nhi aata don't worry Bhaiya aap diamond ho ek din jarur chamkoge 👍👍😍

    • @softsolutions786
      @softsolutions786 11 หลายเดือนก่อน +2

      yes same here

    • @sudhanshu.05
      @sudhanshu.05 11 หลายเดือนก่อน +2

      I'm sold❤

    • @awaispak8377
      @awaispak8377 8 หลายเดือนก่อน

      @@abdul78183 i also have problem with for loop and after watching this its gone great expalination for beginners.

  • @adityafc7
    @adityafc7 11 หลายเดือนก่อน +241

    Yes we really need a frontend competition. Eagerly Waiting for it!😄

  • @Abhishek-eb8qs
    @Abhishek-eb8qs 6 หลายเดือนก่อน +22

    it is like history is repeating itself, jab me JEE ki preperation kar rha tha tab Alakh sir bhi aap ke jese same condition me the, but his value addition in students life paid him , aap ko bhi ak din ye nature return back karega , wo bhi 10X what you are giving to us.

    • @Shivi_1245
      @Shivi_1245 13 วันที่ผ่านมา +1

      Excatly what I thought, inka hasane ka padhane ka style match hota hai, padhai padhai nhi lagti

  • @chiraagb
    @chiraagb 7 หลายเดือนก่อน +5

    This level of indepth knowledge of JavaScript in such a short video is hard to find on TH-cam. Kudos

  • @faizanraja_
    @faizanraja_ ปีที่แล้ว +148

    Just wanna say one thing you are setting a new level of teaching on TH-cam, others set their level at their time at that time they are best but the way you are teaching is what we are expecting now because you are not copying that old content type and syllabus - I am from Pakistan and trust me bhiya you add a lot of value in my knowledge i rarely comment on videos but your effort and content force me to write these things 😍😇
    Edit: Thanks everyone for liking let's support them to hit 1M

    • @sheryians
      @sheryians  ปีที่แล้ว +34

      Thank you Anuj ( chhota bhai ) 🙏🏻❤️

    • @KamleshSahu-qy2fw
      @KamleshSahu-qy2fw ปีที่แล้ว +15

      Jabardast viral hone wale ho guru😊🎉

    • @aryanred2490
      @aryanred2490 11 หลายเดือนก่อน +1

      pakistan waha pe nhi padhte kya jb dekho ye beggaristan aajate indian teachers se padhne

    • @KamleshSahu-qy2fw
      @KamleshSahu-qy2fw 11 หลายเดือนก่อน +17

      @@aryanred2490 bhai itna ego me mt raha kr ...ye knowledge he batne se badhta he ...
      Aur jb khud chennal k owner chahta he ki sabka bhala ho to kvl Indians hi kyo ...sbka hona chahiye ye na ...
      Indian he to mtlb share krna sikho🤗

    • @aryanred2490
      @aryanred2490 11 หลายเดือนก่อน

      @@KamleshSahu-qy2fw bhai mereko indians mein share krne koi problem nhi hai ye pakistani are assan faramosh ye sirf IT(international terrorism)mein he expert hai and must be dealt effectively.

  • @toxy6355
    @toxy6355 ปีที่แล้ว +224

    loved this line: khudko cheat kon karta he yaar

    • @sagar.mishra.
      @sagar.mishra. 9 หลายเดือนก่อน

      Perfect ❤❤❤

    • @IphoneSingh-bh2jt
      @IphoneSingh-bh2jt 6 หลายเดือนก่อน

      Me krta hu

    • @lordstark1640
      @lordstark1640 5 หลายเดือนก่อน

      Me karta hu

    • @Jamy_kor_786
      @Jamy_kor_786 4 หลายเดือนก่อน

      @@IphoneSingh-bh2jt kiun?

  • @billionairemindset6664
    @billionairemindset6664 5 หลายเดือนก่อน +9

    I have never seen a creator teaching like this as you are. I am always here for you to achieve your Goals. Love you and your team so much. 🥰🥰🥰

  • @triptisinghal4273
    @triptisinghal4273 4 หลายเดือนก่อน +2

    everyone's content is different. i saw many javascript videos but nobody taught about these concepts in such an interesting way. your teaching makes me want to study. Thank you so much

  • @rabiaakmal4191
    @rabiaakmal4191 ปีที่แล้ว +27

    i had to pause the video and comment on how much i loved your way of teaching as if u r teaching one on one to each person enjoined this video...... please let this type of content keep coming
    new follower from PAK/USA

  • @anaskhalid645
    @anaskhalid645 8 หลายเดือนก่อน +41

    they way he teaches programming is amazing 👏 i can literally learn straight 3 to 4 hours without getting bored that's his skill and it's amazing❤in my opinion he's the best. I have learned from most of the top channels on youtube and also learned from paid courses but what he is teaching and mainly the way he is teaching is best. hats of to him 👍

  • @themaskboygamer9519
    @themaskboygamer9519 3 หลายเดือนก่อน +4

    You are the best TH-camr I've seen as a teacher. Your teaching is clear and easy to understand, focusing on relevant content. I appreciate your teaching strategy. Learn 20% in order to understand 80% because 80% of the result cause by 20% of the action. Learn what matter is the best crash course I have ever seen.

  • @shushilvishwakarma498
    @shushilvishwakarma498 6 หลายเดือนก่อน +3

    I'm really impressed with the style of teaching. Outstanding bro, pure TH-cam pe koi itna best nahi padhata hoga

  • @bunnytheweebster
    @bunnytheweebster ปีที่แล้ว +133

    I've watched countless JS tutorials, but this one is on another level. Amazing explanations and examples. Great job! 👍🔥

    • @arshaikhhh
      @arshaikhhh ปีที่แล้ว +3

      You Can Also Watch Basic In Previous Video

    • @rajsoni3015
      @rajsoni3015 ปีที่แล้ว +3

      Right

    • @bunnytheweebster
      @bunnytheweebster ปีที่แล้ว +6

      @@arshaikhhh usi k baad hi iss video pr aya bhai 😂

  • @chaitalidesai7879
    @chaitalidesai7879 9 หลายเดือนก่อน +25

    Bhaiya aap kitne bhi bade videos banao... We will happily learn and listen you... Aap selflessly wo deto ho jo students ka actual requirement hai...apko appreciate krne ke liye sach me words nhi suzte.... Bcoz aapke liye utna respect hai...

  • @priyadiwnale1340
    @priyadiwnale1340 6 หลายเดือนก่อน +1

    i never watch a full video in one go but your videos kind of bind me ............thank you so much for your hardwork

  • @Abhishek-eb8qs
    @Abhishek-eb8qs 6 หลายเดือนก่อน +4

    you are the next big thing in indian coding education industry, (likh ke lelo)

  • @charlieyt1163
    @charlieyt1163 10 หลายเดือนก่อน +47

    I had never seen such a good teacher with such an awesome clarity teaching skills.❤

  • @Filmy_world_official
    @Filmy_world_official ปีที่แล้ว +7

    Sir , i will truly say that i have watched many many tutorials of javascript,html,css from many many youtubers e.g:codewithharry,thapatechnical,apnacollege ,I don't want to offend anyone ,but nobody teaches in the way like you teaches us ,You know the secrets that how to teach a beginner .Hatsoff to you ,Sir.

  • @vishalsingh-wb1cu
    @vishalsingh-wb1cu 7 หลายเดือนก่อน

    Absolutely loved this JavaScript course! Your teaching style is amazing, and the in-depth knowledge shared has been incredibly valuable. Thanks a ton for creating and sharing this content!

  • @ChinmayShankarPrasad
    @ChinmayShankarPrasad 3 หลายเดือนก่อน +1

    jo kuch bhi aapne padhaya college me kabhi nhi smjh aate na hi itne acche se explanation milti... so thankyou 🤗

  • @yamrajshrestha2170
    @yamrajshrestha2170 9 หลายเดือนก่อน +37

    I wanted to express my heartfelt appreciation for your exceptional JavaScript tutorial. As someone based in Nepal and passionate about coding, your video has been a true gem. Your teaching style goes beyond boundaries, making complex concepts accessible to learners at all levels. Your dedication to helping others truly shines through in your tutorials. Thank you for your incredible work in advancing our understanding of JavaScript, and I look forward to more enlightening content from you.

    • @user-qv1kl5wc1w
      @user-qv1kl5wc1w 9 หลายเดือนก่อน

      Sir i am from Nepal , if you touched with any It company, could you provide me an internship, Thank you

    • @yuvrajkathpalia9076
      @yuvrajkathpalia9076 8 หลายเดือนก่อน

      Bro notes milsakte hai ?

  • @techz_gamerz
    @techz_gamerz 10 หลายเดือนก่อน +35

    "Absolutely loving Harsh Bahiya's teaching style and content! 🙌📚 The way he explains complex concepts in such a clear and engaging manner is truly impressive. His dedication to providing quality education shines through every video. 🌟 Whether you're a beginner or more advanced, his videos are an invaluable resource. Keep up the fantastic work, Harsh Bahiya! Looking forward to more enlightening lessons."

  • @iii02
    @iii02 5 หลายเดือนก่อน +2

    sir i am really thankful for finding out a guy like you as my teacher, for past few weeks i've learned a lot than past 2years.i thought i could never make it in here,i'll end up like a wack job who likes computers and never studies and cannot make something out of my life but you changed that.when i land my first job I PROMISE i am gonna come to bhopal to see you❤

  • @Souvik36510
    @Souvik36510 5 หลายเดือนก่อน

    Found your channel today as i had some doubt in react and here i am clearing my doubts in js

  • @sherijatt3117
    @sherijatt3117 10 หลายเดือนก่อน +6

    This tutorial was a gem! Your comprehensive breakdown of JavaScript has cleared up so many concepts for me. Can't wait for your future videos - they're exactly what I need to deepen my understanding.

  • @rohitchauhan6103
    @rohitchauhan6103 10 หลายเดือนก่อน +12

    abhi tak ka sabse khatarnak crash course
    bhaiya aap ki knowledge next level hai🫡🫡

  • @HeyIMSomnath
    @HeyIMSomnath 3 หลายเดือนก่อน +1

    49:55 "" is a falsy value too.
    Also as per unary operator in JS:
    [] + [] = "" so it's falsy,
    {} + {} = NaN so it's falsy,
    () + () = 0 so it's falsy too.
    Btw i loved your way of teaching and I've never learned concept like this, I've found this by my own using hit and try.

  • @Touseef_Waqas_0
    @Touseef_Waqas_0 7 หลายเดือนก่อน

    I Love how he seperate the topics in separate videos, love it!!!

  • @viewgames2020
    @viewgames2020 ปีที่แล้ว +6

    Bhaiya aap jis passion se ham sab ko padhate ho, TH-cam pe online padhke bhi aisa lagta hai aap hamse bahut jada connected ho aapki mehnat feel ho jati hai bhaiya, or aap itna mehnat karte ho ham sab par aap kuchh nhi bahut kuchh deserve karte ho,I pray ki aap ko wo mile jo aap chahte ho bhaiya ( YOU ARE THE GAME CHANGER ) Bhaiya ☝️👌👍🙏

  • @MonibRashid
    @MonibRashid 11 หลายเดือนก่อน +10

    Hi, you're really the best tutor on TH-cam undoubtedly, your style of explanation is totally different from all other tutors on TH-cam and it's awesome too!

  • @NiteshKumar-pw6ql
    @NiteshKumar-pw6ql 7 หลายเดือนก่อน

    This is the way to teach that you are doing, really not felt even a minute bore. Enjoyed ur video and learnt something new indeed.

  • @riyadmahmud6754
    @riyadmahmud6754 3 หลายเดือนก่อน

    Hi bhai, Assalamualaikum, I started to discover your channel a few month ago. And approximately a month ago I began to learn from your free content on this platform. I think the contents on this your channel and the teaching style of everyone of you're much better than a collage curiculium. So, thank you so much for provide this!! I make NOTES of every single video where I set my goal to learn from it.

  • @tarunbankar4478
    @tarunbankar4478 9 หลายเดือนก่อน +8

    From start to end...I had watched both the videos .... I don't know that this type of Gem channels 💎 are still available...Thank You so much sir ... We need the competition 😊... Hoping you to grow as ajax as possible.

  • @tabishansari1774
    @tabishansari1774 ปีที่แล้ว +10

    I have watched multiple tutorials on TH-cam for JS and even buy a course from PW but the way you explain no one can Harsh Bhaiya you clear all my doubts in single video ....❤❤❤❤👍👍👍👍
    and iIreally want asynchronus JS tutorial Plzz make it as soon as possible your level of content is top notch Bhaiya and Plzz make tutorial for gsap and scroll trigger also... Love You Bhaiya.. When you teach it feels like a friend who is explaining and teaching everything in a very different and easy way

  • @HADES-do3hl
    @HADES-do3hl 6 หลายเดือนก่อน +2

    Literally the best crash course man... If u already know js but procrastinated sometime and left the touch, then this is the channel... But maybe not recommend for total beginners

  • @subhashreddy6750
    @subhashreddy6750 7 หลายเดือนก่อน

    With very basic knowledge in JavaScript i came here. U made me clear some concepts still struck with some doubts.

  • @user-ui7fx8rd1z
    @user-ui7fx8rd1z 8 หลายเดือนก่อน +4

    I just completed the advanced JavaScript course, and I am absolutely blown away by the depth of knowledge and practical skills I've gained. This course is a game-changer! 🌟

  • @anurodhbanerjee1662
    @anurodhbanerjee1662 ปีที่แล้ว +23

    Hello @Sheriyans. What a lovely tutorial once again. I must say you guys are doing a commendable job in the field of teaching web development out of the box. As a regular learner and well wisher of your channel, I would request if you guys can teach how to build the projects from frontendmentor or codementor from scratch. That would be very helpful for us all. Thanks again and keep it up.

  • @theharshbhagat
    @theharshbhagat 2 หลายเดือนก่อน +1

    One of the best basics and advance series because it covers such tangents of depths or concepts of depths in simple way which i not found in other sources, it saves so much time in my revision of Javascript after months of gap, thank you is not enough for this, but then also thank you so much.

  • @anshugurung5285
    @anshugurung5285 หลายเดือนก่อน

    I usually never comment on tutorial videos but that window object example was stuff of wonders. Thanks man

  • @TECHwithVishal101
    @TECHwithVishal101 ปีที่แล้ว +15

    After your previous js video eagerly waiting for this advance session.
    Loved your way of teaching.
    ❤️

  • @playhunt2991
    @playhunt2991 9 หลายเดือนก่อน +14

    Sir , most important aspect about you is you already expect what a student want to ask and his reaction over it , it gives us an interactive touch with you, hats off to you sir

  • @mahendrakeer4580
    @mahendrakeer4580 3 หลายเดือนก่อน +1

    sir aap ka padane ka tarika aap per sut karta hai or dusro ka pata nhi perantu muje acha lagta hai aap ki teaching har ek ko badiya tarike se explaine karte ho vo bhi or brotherhood jesa lagta hai sir aap ki video me

  • @wasishah25
    @wasishah25 4 หลายเดือนก่อน +3

    or me In Sha Allah jab developer banungi to hamesha apka or shriyans coding school naam meri kamiyabi k sath age tak chakkega or sab ko bataungi k mere parents k baad aap log hain meri success ke peeche🥰😇❤

  • @sherijatt3117
    @sherijatt3117 10 หลายเดือนก่อน +6

    Hats off to you for creating this masterpiece of a tutorial! Your dedication to breaking down JavaScript intricacies is highly appreciated. I'm eagerly anticipating your upcoming videos, as they're my go-to for in-depth learning.

  • @rajscorner2524
    @rajscorner2524 10 หลายเดือนก่อน +4

    I was watching code with harry from few years & other youtuber's video also..
    But still I learned new things from this video, you both have knowledge & some simpler but some unique way of teaching..
    Don't mind any single negative comment, because you have hundreds of good comment also.
    You're doing Great

  • @grannydox
    @grannydox 3 หลายเดือนก่อน

    We are Sheriyans. Thank you so much for this type of javascript crash course. You are doing great for students. Once again Thanks.

  • @Livewidsuru
    @Livewidsuru 7 หลายเดือนก่อน

    I wish u all the best, bhaiya! Your video helped me not just with JS but also to get back on track with my studies!...may all ur wish come true!

  • @soumyachourasia4543
    @soumyachourasia4543 10 หลายเดือนก่อน +6

    this is the best javascript tutorial i have ever watched. I have watched many tutorials but it was all useless untill i watched harsh bhaiya,s js tutorial. he covered almost topics with such a nice explanation with real life example. thank you so much bhaiya🤗

  • @sherijatt3117
    @sherijatt3117 10 หลายเดือนก่อน +12

    sheriyan coding school you are setting a new level of teaching on TH-cam, the way you are teaching is what we are expecting now because you are not copying that old content type and syllabus - I am from Pakistan and trust me bhiya you add a lot of value in my knowledge i rarely comment on videos but your effort and content force me to write these things 😍😇

    • @tsdonalds1668
      @tsdonalds1668 9 หลายเดือนก่อน

      Hello brother,how far have you reached in mern stack journey.

  • @yogeshnaik5884
    @yogeshnaik5884 7 หลายเดือนก่อน +3

    Loved your JS series, huge respect for you brother
    Keep growing, Thank you

  • @nasemulislam5882
    @nasemulislam5882 2 หลายเดือนก่อน

    Never understand this much from any youtube chanel. Thank you sir. Respect from the core of my heart❤

  • @ankan9690
    @ankan9690 ปีที่แล้ว +11

    Forever appreciator! Lets sharpen our skills to the fullest!! 💪🏻

  • @ShashiBhushanKumar-me9uu
    @ShashiBhushanKumar-me9uu 8 หลายเดือนก่อน +5

    Yes we really need a frontend competition.

  • @shreyashkakde9315
    @shreyashkakde9315 6 หลายเดือนก่อน

    Watching this video 5 months after been uploaded, Just want to thank the instructor for this amazing level of content and an amazing level of teaching skills one thing I want to tell studying from your videos is very fun I don't get bored while studying thank so much for this.

  • @user-om8rd8dj9w
    @user-om8rd8dj9w 5 หลายเดือนก่อน

    Best explanation and in-depth content available on TH-cam. Been following this channel since last week and I'm in love with the content.

  • @NandaYKSalunkhe
    @NandaYKSalunkhe 8 หลายเดือนก่อน +3

    Your teaching style, the way you connect with us, and your sense of humor are all authentic and straightforward, making it a valuable experience for me. Thank you very much, and I'm eagerly anticipating your next video.

  • @MikeBora
    @MikeBora 4 หลายเดือนก่อน

    Exactly ase hi sochega koi bhi beginner ekdum simplest way of explaining ❤❤ incredible

  • @sanskarjain8192
    @sanskarjain8192 18 วันที่ผ่านมา

    Bhot kuch seekhne ko mila bhaiya matlab bhot achcha laga dekh ke, jo kuch log chahte hain ki aisa padaye koi vo exist karte hain, jaise aap

  • @shravnisrav
    @shravnisrav ปีที่แล้ว +7

    Great teachers make learning easy, and you are definitely one of them, sir.

  • @umairsarwar2416
    @umairsarwar2416 9 หลายเดือนก่อน +4

    You are the real teacher i found few days ago. Education at its best. 😊

  • @Ayush_bhardwaj23
    @Ayush_bhardwaj23 6 หลายเดือนก่อน +1

    The way you explained the concept was exceptional. Please provide us with more content like this, we truly appreciate your effort. I have never come across a tutorial for JavaScript that was so easy to understand. However, after watching your video, I got motivated and learned so many concepts. Thank you sir ❤

  • @blackworld1366
    @blackworld1366 6 หลายเดือนก่อน +1

    vese to me kisi bhi video me comment nahi karta lekin aaj aapka padhane ka tarika dekh kr esa lag raha he ki pese dekhr bhi esa content na mile vese mene offline course se js sika tha lekin me baar baar use bhul jata tha 😅 lekin aapke sirf 2hi video ne muje esa mehsus karaya hi ki... matlab kya hi kahu aapki jitni taarif kare utni kam he ❤ or ha aapko nagetive comments or negative logo ki baato ko dhyan me nahi lena hi kyukiii.... kuchhh to log kahengeee..... logo ka kaam he kehnaa.....................

  • @vivekjais-wall
    @vivekjais-wall 10 หลายเดือนก่อน +9

    This is by far, the best channel to learn web development.. I really wish and pray from my heart that this channel and you @harshBhai as an individual grow a lot and get the recognition that you deserve.. Lots of love❤

  • @deepthi262
    @deepthi262 ปีที่แล้ว +4

    Im waiting for the webdev competition and it will be my first time. You are amazing. Thank you.

  • @deepikarajpoot463
    @deepikarajpoot463 4 หลายเดือนก่อน +1

    you doing a great job sir, just try to ignore negative ppl around urself , just be happy..

  • @ayush0442
    @ayush0442 5 หลายเดือนก่อน +1

    itne channel dundh liye khi se nhi shik pya par yhase shik gya tq so much you are a great teacher.

  • @minhaj2643
    @minhaj2643 ปีที่แล้ว +13

    Awesome content bhaiya
    Please make a video on asynchronous javascript 🙏🏻🙏🏻
    Amazing explanations and examples.
    Best js tutorial ever ❤
    Bhai sab samaye aap ki saath hae.... love it man

  • @nishitlugun8394
    @nishitlugun8394 8 หลายเดือนก่อน +17

    I spent 4 months learning js from udemy, wish I knew about this channel earlier. Kudos to you sir, revision ho jaa rahi har chiz ki wo bhi aur behtar tareekey se. Huge respect, this channel will become one of the best yt channels for students. Keep up the hard work. Btw *I LOVE YOUR BEARD* 😇

    • @fullstacky_tech
      @fullstacky_tech 6 หลายเดือนก่อน

      Mee too yar same udemy se ....wasted alot of time

    • @heisenberg3040
      @heisenberg3040 5 หลายเดือนก่อน

      whose course did you take

    • @nishitlugun8394
      @nishitlugun8394 5 หลายเดือนก่อน

      @@heisenberg3040 Jonas Schmedtmann’s full Javascript course.

  • @mushfiqurmashuk6948
    @mushfiqurmashuk6948 8 หลายเดือนก่อน

    I do understand hindi quite well, the way you give pause and way of seeking interest of a person is really awesome. When you are going through the difference between var, let and const i was about to skip that part, but i didn't luckily. Learned a lots of things throughout your video, highly appreciate yoir efforts. ❤ From Bangladesh. ❤

  • @er.soumyavlogs
    @er.soumyavlogs 5 หลายเดือนก่อน

    luv u bade bhai..aap itne ache se padhate ho ki jo complicated chiz hai usko samjhne main aasan lagta hai...apke liye dher sara respect aur pyar♥

  • @dearpromax
    @dearpromax 11 หลายเดือนก่อน +5

    The way you teach Is really amazing.Please sir hold that competition and Kindly make a full web backend course ❤

  • @yashgupta-yt
    @yashgupta-yt 10 หลายเดือนก่อน +4

    Harsh Bahiya, I Just had to shoot you a quick shoutout - your JavaScript tutorials are an absolute blast! Your teaching style is like a magic trick for complex concepts - pure genius. Your passion for top-notch education seriously radiates in every video. BTW, your JS Course it a true masterpiece. Sir I'm every much excited for DSA Course -
    ** The world of data structures in your signature style **
    I mean, come on, that would be legendary! Count this as a firm (but super excited) request.
    Keep being awesome, Harsh bahiya 💥

  • @anuragpokhriyal9749
    @anuragpokhriyal9749 5 หลายเดือนก่อน

    apka explain krna ka tareka sabse best hai bhaiya , ap youtube ke rancho ho jo sabko sikhaega ki padhate kese hai

  • @himaniarora7569
    @himaniarora7569 4 หลายเดือนก่อน

    bhut hi achi explanation hai or main thing apki videos se pdte time bore ni hote continue dekh skte hai mai pura javascript apse hi pdna chaugi, aisa pheli bar hua h jb mai next day apne mind pr pressure daal ri hu ki kya pda ta or mujhe sb yd hai apka way of teaching is great!!, Definetly ap ek bhut bde youtuber and content creater bnoge, I really wish chapri famous na ho ap jaise log famous ho jo india ko aage le jaye and India grow kre

  • @sanjaylamba003
    @sanjaylamba003 11 หลายเดือนก่อน +4

    Amazing video as usual!
    I learnt a lot of concepts and am looking forward for the frontend event that you are going to organize
    Cheers !!

  • @akashgautam4372
    @akashgautam4372 9 หลายเดือนก่อน +6

    "Your ability to break down complex topics so effortlessly is truly impressive! It makes learning from your videos an absolute pleasure."
    "Thanks for making the learning journey enjoyable and accessible for all of us!"

  • @user-wh2hc7pd6i
    @user-wh2hc7pd6i 8 หลายเดือนก่อน

    one of the best teaching method .I have seen so far so much accurate and to the point please make a full fledge video.

  • @shahzaibtariq9296
    @shahzaibtariq9296 หลายเดือนก่อน

    Hello bro don't care what anybody says because they don't know everything takes time for its fame it does not matter what they think about you. Just continue your efforts to teach us the best and show the world what you can do no one can compete you. Thanks for your efforts. I really like your videos because it does not matter from whom you are learning if your mentor is good then nothing else matters. You had taught me some things better than anyone else in a good manner.

  • @gengrim2333
    @gengrim2333 11 หลายเดือนก่อน +3

    God bless you sir, your sacrifices to make something this brilliant will pay you back 100 times . Thank you for your priceless efforts

  • @vikralkumar8127
    @vikralkumar8127 ปีที่แล้ว +3

    Sir i would love to say that the way you teaches is really appreciateble. You make every concept very clear to understand. Thanks sir ❤❤.

  • @alihamza5280
    @alihamza5280 ชั่วโมงที่ผ่านมา

    bro donot worry! khud ki qasam your are a excellent
    you teaching style is too good

  • @user-nx4ci9su4u
    @user-nx4ci9su4u 4 หลายเดือนก่อน

    me is time ye vedio dekh rha hu pakistan se lkn bhai is level pe jaha k cheezu kisi ny bi nhy parhaya or saab se main ksis ny bi cheezu ko itna easily understand nhy krwaya na hi point wise bataya or execution context tu akhand level bhaii.
    😍😍😍😍😍😍

  • @vinodmane3564
    @vinodmane3564 ปีที่แล้ว +3

    The way you explained that is amazing ❤waiting for more advance topics videos on JavaScript 👍

  • @renukashivacharyas.h3870
    @renukashivacharyas.h3870 7 หลายเดือนก่อน

    Everyone said everything in JS objects,today I understood why arrays are also objects.Thank you sir.

  • @aimenrao995
    @aimenrao995 4 หลายเดือนก่อน

    I'm truly grateful for your JavaScript course on TH-cam. Your clear explanations and practical examples made learning enjoyable and accessible. Thanks for demystifying complex concepts and empowering us to dive into JavaScript with confidence. Looking forward to applying my newfound skills!

  • @gauravsharma6625
    @gauravsharma6625 ปีที่แล้ว +4

    Sir You Are Great Teacher ever in my life. I Really Loved Your Explaining way and Your Examples,this video helps me to clear my all doubts also learn something new things
    You keep teaching us unique and something new like this, this is my request to you, I am sure one day your channel will grow a lot
    Sir, don't pay attention to the negative comments, these are the people who are jealous of the progress of others.

  • @rounak_saha
    @rounak_saha 10 หลายเดือนก่อน +9

    Hello Bhaiya,loved ur dedication and hardwork you are putting in your contents.People didnt understand ki knowlegde shouldn't be compared,we must remember the fact that we are only here to study and gain knowledge and not for comparison.Thank You! for making such valuable contents for us..❤

  • @anurag_tarai
    @anurag_tarai 5 หลายเดือนก่อน

    I just found your channel randomly on youtube. My studying style has been changed since then and now I have more confidence in myself. I really enjoying this process and learning programming. Thank you for your effort and hardwork to give this premium free course🥰Love to Sheryians. Hope it will become number ONE ed-tech channel on youTube before 2025. Jai Sree Krishna🙏

  • @ritamehra3186
    @ritamehra3186 5 หลายเดือนก่อน

    you are such a mind blowing teacher i have found on youtube. trust me you made my coding mindset more easy and smooth. you are best as compare to other the reason is you never giveup untill you satisfy yourself with your sharing skill. all topics are just clear. thank you sooooo much ♥♥♥♥♥

  • @NikhilKumar-vv8xk
    @NikhilKumar-vv8xk 8 หลายเดือนก่อน +3

    Brother you teach really really great, and no matter what others say and who they compare you to, we are with you, atleast I am always, so just keep working and you are gonna be really great one day, you got some really expressive skills and a really great dedication.. Keep it up brother....

  • @knowledgeseed2940
    @knowledgeseed2940 ปีที่แล้ว +4

    Amazing explanations and examples. Great job Bro! 👍🔥

  • @Manish-go8jy
    @Manish-go8jy 26 วันที่ผ่านมา +1

    Learn what matters series is what i like the most ❤❤❤thanks sheriyans coding school for all these resources

  • @user-jq7di5cj1n
    @user-jq7di5cj1n 8 หลายเดือนก่อน

    programming aint difficult it just depends on who's teaching u...
    ap k teaching methods bht best hein...
    You made JavaScript seem easy for us, even though it used to be very challenging. Thank you!

  • @indianaesthetics8911
    @indianaesthetics8911 ปีที่แล้ว +4

    Waited a week!!!!!!!!!!!!!!!!!
    I love you man

    • @sheryians
      @sheryians  ปีที่แล้ว

      Surely one day!

  • @user-lu6cp7sx4o
    @user-lu6cp7sx4o 10 หลายเดือนก่อน +4

    Thanks for this Master piece. You teaching style is so unique that You will definitely rock in this industry. Keep up the good work. I will always support your content.

    • @sparshkandwal
      @sparshkandwal 9 หลายเดือนก่อน

      aapne notes banaye h kya??