Higher-Order Functions ft. Functional Programming | Namaste JavaScript Ep. 18

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 1,2 тыс.

  • @subrahmanyakm4859
    @subrahmanyakm4859 3 года назад +437

    You know what, everytime once I complete the video of yours,I feel like I'm a super human 👽. Lots of information, lots of knowledge.. ♥️🙏

    • @akshaymarch7
      @akshaymarch7  3 года назад +166

      Being a teacher, this is the best feeling in the world. ❤️ I feel so happy and grateful when I read comments where people say that they actually got knowledge from the videos. Thank you so much for your beautiful comment, made my day! ❤️

    • @balajiravi9259
      @balajiravi9259 3 года назад +12

      Yes 200% correct

    • @keshav929
      @keshav929 3 года назад +2

      +1

    • @divyanshushukla8615
      @divyanshushukla8615 2 года назад +1

      Same here bro

    • @poomarimurugan5762
      @poomarimurugan5762 2 года назад +1

      @@akshaymarch7 Why can you go as a teacher in any schools or colleges?❤️❤️. You are teaching method is very good.

  • @aks123ay
    @aks123ay Месяц назад +5

    🔴 for someone who got confused
    1.First class functions
    The ability of functions, where the functions can be treated as variables, that is we can pass functions as arguments, return function and even assign function to another variables
    2.Higher order function
    Functions that takes one or more functions as argument
    3.Call back function
    Functions that can be passed as an argument to another function
    That is call back functions are passed as arguments to the higher order functions, these abilities of functions are commonly known as first class functions

  • @akshaymarch7
    @akshaymarch7  3 года назад +87

    Next Episode: *map, filter & reduce* - ruclips.net/video/zdp0zrpKzIE/видео.html
    After watching this video, do let me know in the comment, How was the video? I read all the comments, would love your feedback! ❤️

    • @fayazansari2827
      @fayazansari2827 3 года назад +4

      Finally wait is over, I got goosebumps after watching your premiere of this video😣❤️❤️

    • @preetikohli2901
      @preetikohli2901 3 года назад +3

      bhaiya plz iterators and generators pe bhi video bnao

    • @SachinKumar-qv8fj
      @SachinKumar-qv8fj 3 года назад

      are wah wah wah finally

    • @vamsi11358
      @vamsi11358 3 года назад +1

      bro please do react videos as well

    • @AmanSingh-ty8nc
      @AmanSingh-ty8nc 3 года назад

      Such a great teacher man ❤️

  • @jagrutsharma9150
    @jagrutsharma9150 2 года назад +106

    Things learned:
    1. Follow DRY(Don't Repeat Yourself) principle while coding.
    2. Use function to stop writing repeating line of codes.
    3. Function that takes another function as argument(callback function) is known as Higher order functions.
    4. It is this ability that function can be stored, passed and returned, they are called first class citizens.
    5. If we use Array.property.function-name. This function is accessible to any array in your code.

    • @yogeshpandey730
      @yogeshpandey730 Год назад +20

      Small correction: at place of Array.property it should be Array.prototype.function-name

    • @Siddharth-uo6zw
      @Siddharth-uo6zw 2 месяца назад +1

      small correction 5: any where not array :(|)

  • @agustinlavia
    @agustinlavia 2 года назад +27

    I checked this video out half a year ago when I was decided to start programming again. I watched this video several times and each time I felt like I no longer had it me to understand this stuff. I just couldn't see the beauty of this. I'm coming back after practicing and coding in real projects and holy fuck, I can see the beauty of it now. Thank you so much Akshay. Namaste 🙏

  • @AshutoshKumar-oo3hc
    @AshutoshKumar-oo3hc 3 года назад +19

    I am a Java developer and still watch his videos, that's the level of quality this guy delivers. Keep up the good work bro! 👍🔥👍🔥

  • @piyushkeshari6266
    @piyushkeshari6266 2 года назад +70

    *For someone who got confused:*
    First-class functions are JavaScript functions that can behave like variables. They can also be passed as arguments to higher-order functions.
    Higher-order functions are functions that return a function or take in a function as an argument.

    • @aiyanfaras8389
      @aiyanfaras8389 2 года назад +1

      Thanks! I literally had this doubt.

    • @ajaybedre4199
      @ajaybedre4199 2 года назад +1

      Then what are call back functions? Can you differentiate between first class function and call back functions?

    • @anils9747
      @anils9747 2 года назад +9

      First Class Function: In JS function is treated as value, the value is passed to OTHER FUNCTIONS as an argument is called First Class Function. The main intention of First Class function is to be used in other functions, not intended to be called directly.
      Higher Order Function: The OTHER FUNCTIONS which takes function as an ARGUMENT are called Higher Order Function.
      Callback Function: In Higher Order Function passed ARGUMENT function is called callback Function.

    • @karishmasoni1249
      @karishmasoni1249 Год назад +2

      I am super confused after watching this video.
      Unable to differentiate between FIRST Class Functions and HOF

  • @utkarsh_katiyar
    @utkarsh_katiyar 3 года назад +289

    Async/Await
    Promises
    This
    are the topics, I would love to watch on this playlist.

    • @rohits_frame
      @rohits_frame 3 года назад +11

      And promise should have it's own series. 😄

    • @pranjalrathod8556
      @pranjalrathod8556 3 года назад +56

      Await, He is synchronously working on it! and he has already Promised it ❤

    • @bharatjain6930
      @bharatjain6930 3 года назад +2

      HUGE ++++++++++

    • @RupeshMayekarx26
      @RupeshMayekarx26 3 года назад +1

      big 🤟 from me also

    • @universal4334
      @universal4334 3 года назад +2

      Yup these are the big one's

  • @vikasthakur360
    @vikasthakur360 3 года назад +49

    True Happiness is when Akshay bhaiya uploads new episode of Namaste Javascript❤❤❤❤❤❤❤❤❤❤

  • @LearnerAbhi21
    @LearnerAbhi21 3 месяца назад +4

    A higher-order function is a function that does one or both of the following:
    - Takes one or more functions as arguments.
    - Returns a function as its result.
    Breaking Down:
    "Khana khane ke baad bartan andar rakh" is like a higher-order function.
    "Bartan andar rakh" is like the callback function.
    How It Works:
    The higher-order function (khana khane ke baad bartan andar rakh) does something (e.g., eating food) and then calls another function when it’s done (bartan andar rakh).
    The callback function (bartan andar rakh) is the action that gets executed after the main task is completed.
    In this analogy:
    Khana khana (eating food) is the main task.
    Bartan andar rakh (putting the dishes away) is the additional task that happens after, which is like the callback function being executed after the main function is done.
    So, "bartan andar rakh" is acting like a callback function that gets executed after the main action (eating) is completed.

  • @sirishadasika5767
    @sirishadasika5767 2 года назад +3

    I have changed my expertise from support to front end and i was struggling to understand the concepts. Your tutorials are such a relief! You are the best teacher i could ever find in any platform. Thank you for everything you do !:)🙏

  • @JudoboyAlex
    @JudoboyAlex 3 года назад +10

    Finally, one of the best JS teacher is back! Thank you for this lesson!

  • @WestcolColombia_
    @WestcolColombia_ 2 года назад +5

    The speed you use to explain is perfect, you don't need to be faster explaining, that way it's really beautiful, and also, this topic took me a while to understand it, but I watched the video 3 times until I understood the topic, now I write code like that, every day, to make a habit and in case of any interview to be able to surprise the Interviewer hahaha, thanks so much, I didn't like JavaScript that much, and now I wake at 5:50 am to watch your videos and I finish at 10: pm or more, because you teach really good that this becomes addictive 🥰🏆🎉, you're definitely a Master, Very intelligent gu.

  • @soulfulmusic1080
    @soulfulmusic1080 3 года назад +1

    Just finished the namaste🙏 JavaScript playlist. I have been studying JavaScript since 2nd year, but never understand Js concept in this way. Best thing about this course , you repeat the important concept n number of times(GEC, synchronous single thread language, closures, callback, setTimeOut()) . That will help me to remember the concept. Thank you so much bhaiya!!!

  • @3208nandu
    @3208nandu 3 года назад +5

    Bhai -- Java script mai shor machega.....If you teach like this then there would be only JS Developer . Excellent and practical way of teaching . I know you take lot of effort to just create this 24 min of video. Hats off . Waiting for your Map, Reduce and filter video.

  • @amitgupta8431
    @amitgupta8431 2 месяца назад +1

    I'm thankful to the universe that this channel exists.

  • @pranjalrathod2158
    @pranjalrathod2158 3 года назад +19

    Watching him growing feels like a personal achievement! Much love Man❣️

    • @akshaymarch7
      @akshaymarch7  3 года назад +15

      This channel is nothing without you brother and all the achievements of this channel are equally yours as well! ❤️

  • @milanvala7940
    @milanvala7940 3 года назад

    video title for one topic, teachs multiple topics.. huge respect.

  • @bharanishkumar465
    @bharanishkumar465 3 года назад +29

    The day I completed watching other videos in the playlist new video is out in the series, lucky I can go with the flow. Akshay, you made me fall in love with JavaScript and your way of explanation of each and every concept is crystal clear 🙏

    • @akshaymarch7
      @akshaymarch7  3 года назад +31

      My mission was to make you fall in love with JavaScript. So happy to see that happening! 🤩
      Don't worry, get to fall even more now. ❤️
      And don't forget to share the videos with your friends and colleagues. Let's grow together! 😇

    • @bharanishkumar465
      @bharanishkumar465 3 года назад

      @@akshaymarch7 Excited!!❤️

    • @sandeepraj7443
      @sandeepraj7443 3 года назад

      @@akshaymarch7 You are already Succeed ❤️

  • @MundiWay
    @MundiWay Год назад +1

    I never commnets on video or even like them, but this person omg, how he is so dam good in explainting things.

  • @shinobiwolf8133
    @shinobiwolf8133 3 года назад +5

    The part that Akshay bhaiya is saying the previous lectures as episodes "HE MEANS IT", they are not just lectures , its a F**king web series "NAMASTE JS" 💖

  • @mayanksahu6486
    @mayanksahu6486 2 года назад +1

    It is awesome how you practically showing the reuseablity and other factors of functional programming rather than just telling the basic points and advantages of it. Love and Respect Sir.

  • @sailyjadhav1111
    @sailyjadhav1111 3 года назад +67

    Hello Akshay, this was a superb comeback!! :D Understood the concept of functional programming. Could you please create videos on 'This' keyword, Promise, Async Await, es6 features of JS?

  • @soniiGamerz
    @soniiGamerz Год назад +1

    For Me, The most important part to this video was to get understood how to create Polyfill (the topic which I have always been in a confusion).
    Thanks Akshay

  • @amitgaikwad3120
    @amitgaikwad3120 3 года назад +10

    What a Comeback 🙌.
    This video made me feel like return of Batman in Gotham City.
    " The Namaste JavaScript Returns ".

  • @suganyaprakasam1704
    @suganyaprakasam1704 2 года назад

    You really dont know Ashay that you are giving life to thousands of people with your awesome explanation of javascript. Kodos to you!!

  • @hrishikeshmallick3508
    @hrishikeshmallick3508 3 года назад +55

    Akshay Saini: You waited!
    We: Of Course

  • @balabhadrachand3834
    @balabhadrachand3834 2 года назад +1

    I literally got shocked how this video jumps into the map(). Never has such an explanation of map(). Really love the video & for me this is the best episode. Thanks again sir for the beautiful series.

  • @pankajjangra7
    @pankajjangra7 3 года назад +5

    Waah Bhai...Moj krdi🔥😍
    Aakhir intzaar khatam hua. Love you Akshay bhai ❤️

  • @swadeshrout8349
    @swadeshrout8349 3 года назад +1

    I am working in front-end development field from around 3 years , but from the last 3years i haven't learned that much in JavaScript as compared to whatever i have learned and my concept got cleared about JavaScript from the last one month after watching Namaste JavaScript or other interviews videos of yours . Thank you Akshay Saini , it means a lot . Got really excited after knowing that your next video will be based on map , filter , and reduce , on which still now i am struggling to figure it out.

    • @629_nishantghadigaonkar3
      @629_nishantghadigaonkar3 Год назад

      do you get paid well as a front end developer ? please let me know

    • @swadeshrout8349
      @swadeshrout8349 Год назад +1

      @@629_nishantghadigaonkar3 Yes, it’s directly proportional to career growth and learning.

  • @mohamedyusufkhan216
    @mohamedyusufkhan216 3 года назад +6

    Akshay really thanks a lot man,I feel like get some extra energy after watching ur videos.Now I have lot of hope on me to face interviews

  • @charanraj3891
    @charanraj3891 6 месяцев назад

    The only times I binge watched something at a stretch from morning till late night are when I watched Breaking Bad , GOT and Namaste ReactJs and Namaste Javascript, not only you explain everything in depth but you also teach stuff in an engaging manner that keeps the listener glued to the screen as if they're watching a very interesting Movie or TV series

  • @manu-ty7gr
    @manu-ty7gr 3 года назад +10

    Thanks for coming back after a long time.. I was waiting like a Shabari😀🙏🙏

    • @akshaymarch7
      @akshaymarch7  3 года назад +1

      Ye thoda jyada ho gaya ab! 😅

    • @vijaypatneedi
      @vijaypatneedi 3 года назад

      @@akshaymarch7 nahi, that's true.

  • @jaxsriv1052
    @jaxsriv1052 2 года назад

    I am now appearing for the interviews and before ever interview I revisit the playlist and believe me everytime I learn something new and my implementation power gets better.

  • @harshabs3666
    @harshabs3666 3 года назад +12

    Promises, async, await, ajax, json, please cover these concepts ⏳.

  • @yatendraupadhyay2180
    @yatendraupadhyay2180 9 месяцев назад +1

    Bhaiya you are a framework as to how a teacher should be .
    much thanks.

  • @de-codr8814
    @de-codr8814 3 года назад +3

    Waiting for this for a long time 😁 , what a relief 🙏

  • @Harshitbadolla
    @Harshitbadolla 3 года назад

    I recently read the higher order functions chapter from EJS book and now after watching your video, I am having super clarity.
    You are the true Khiliadi of Javascript. Thanks for this video Akshay bhai.

  • @abhinavmehta1010
    @abhinavmehta1010 2 года назад +10

    Bhagwan un sabki madad kre Jinki Interview Akshay bhai le re honge.

  • @rahulyadav-xn5mt
    @rahulyadav-xn5mt 3 года назад +1

    In this video, I love where you use mind and reduce the use redundancy by making proper callbacks.

  • @ankursinha7635
    @ankursinha7635 3 года назад +12

    Some videos on web security.
    You've helped me fell in love with JS, which helped me bag 18 LPA offer. Thank you for such wonderful content.

    • @akshaymarch7
      @akshaymarch7  3 года назад +3

      Congratulations, Ankur. 👏
      Aag Laga di aapne 🔥🔥

    • @divvagg5616
      @divvagg5616 3 года назад

      Hello . Can you guide me how to apply for react developer jobs?

    • @anantsingh9456
      @anantsingh9456 3 года назад

      @@divvagg5616 search on indeed or linkedin

  • @CryPoison
    @CryPoison 2 года назад

    Woooooooww that "Array.prototype" thing blew my mind. really. All of these things you builded up till now make sense now. I want to finish this series once again another time.

  • @nktechofficial
    @nktechofficial 3 года назад +23

    100k is comming soon sir advanced congrats 😋

    • @theotherme9965
      @theotherme9965 3 года назад

      15:00 I write code in this way where, I pass a string (area, circumference, diameter) along with radius and use 'if' condition (for the string passed) inside 'for' loop and have all logic there. At a time only specific piece of code.
      @akshay is there any drawback with my approach?

  • @kesavanela5815
    @kesavanela5815 3 года назад

    2:00 This guy literally begging us to teach us something new. What a Gem!!

  • @mituladroja758
    @mituladroja758 3 года назад +3

    Thank you for this lesson, currently functional programming is most important.
    Could you please cover below topic in this series as well
    1) Pure Function
    2) Function Composition
    3) Point free Functional Programming
    4) SOLID principles

  • @mohammadazhar9700
    @mohammadazhar9700 4 месяца назад

    nobody can teach these topics like youuu man! Outstanding.... Thank you

  • @shahpragnesh
    @shahpragnesh 3 года назад +3

    Async/Await, Promises and Node.js Architecture differences if any means Node.js fundamentals

  • @varaprasad4163
    @varaprasad4163 3 года назад +1

    Here comes the Javascript legend. Eagerly waiting for your videos.

  • @shinobiwolf8133
    @shinobiwolf8133 3 года назад +3

    Netflix is soon going to adopt Namaste JS 💔💔💔

    • @akshaymarch7
      @akshaymarch7  3 года назад +4

      Namaste JavaScript will always be FREE for viewers, won't agree even if Netflix wants to adopt it. 😌

    • @shinobiwolf8133
      @shinobiwolf8133 3 года назад +1

      @@akshaymarch7 Happy to hear😁😁.Can't thank you enough for the vids 🙇🙇🙇🙇🙇

    • @sonalikulkarni8778
      @sonalikulkarni8778 3 года назад

      @@akshaymarch7 you are great Akshay 🔥

  • @ajithingmire7782
    @ajithingmire7782 3 года назад

    This is map, this map, I was thinking until 16:30 . Very good examples & explanation. Best advantage of pure functions is they are highly predictable as no side effects, same output for same input, which makes it perfectly unit testable in isolation & also makes your code predictable.

  • @himanshujha7919
    @himanshujha7919 5 месяцев назад

    Akshay bhai ka jawab nahi......love you bhai....best javascript tutorial..♥♥♥

  • @A11-RECORD
    @A11-RECORD Год назад +1

    sir i want thank you from the bottom of the heart.....please keep making

  • @samarthbillore9485
    @samarthbillore9485 3 года назад

    The difference between you and any other tutorials out there is you give the proper implementation of whatever you teach. Simply amazing to see how to apply all the theory in real

  • @prasadguru96
    @prasadguru96 Год назад

    Was always confused about .map(), but after watching this video, I think I will never forget now. Thanks Akshay. You don't know, how many lives you are changing.

  • @srijan406
    @srijan406 2 года назад

    I Have started watching your video a few days ago and have continued watching since then...now the main reason being the way you explain. In most of the videos being the logic first through whiteboard and then via code with a basic example and then you explain how to refactor codes make it better and that's the beauty of it i.e. covering the basic first making sure we understand through examples and then diving into code and then to advance a bit.....really liked your videos.

  • @rohits_frame
    @rohits_frame 3 года назад +1

    The way you have explained it via example, it will help people not just learn the concept but I am sure they will be able to relate with the actual usecase in their ongoing projects. I hope everyone learn these not just from interview perspective but also try to include these practices in their codebases.
    Let's keep learning via these awesome videos.

  • @ravindra__naik
    @ravindra__naik 3 года назад +1

    Very nice explanation @Akshay.
    Need more videos on:
    1) ES6 to ES5, Some interviewers ask how ES6 code is transpiled to ES5. (example : classes, inheritance)
    2) Prototype and prototype Inheritance related interview questions
    3) A few more interview questions
    4) Object based interview questions
    Thanks.

  • @khushboosaini2785
    @khushboosaini2785 3 года назад +2

    I used to check everyday that aaj toh new episode aaya hoga javascript ka.... Thank you so much Akshay sir for the videos☺

  • @bigsidetech
    @bigsidetech 2 года назад +2

    Amazing!....explaining higher-order functions while creating a map function is truly mind-blowing 🤯....Thanks Akshay for this awesome javascript tutorial 👏👏👏

  • @rhimanshu6288
    @rhimanshu6288 3 года назад +1

    Even helpful for experienced people. Code reusability. Most Important. Once you did these you are selected for sure

  • @namaste-shorts-2004
    @namaste-shorts-2004 3 месяца назад +2

    I am watching third time this series. I fall in love every time thanks Akshay Saini 🙂

  • @arunhembram1859
    @arunhembram1859 3 года назад

    The more you upload videos, the better I am understanding javascript.

  • @BharatiSubramanian99217
    @BharatiSubramanian99217 3 года назад +2

    No words, Akshay!
    Your love and enthusiasm for the language is just infectious! You're a wonderful teacher. God bless! :D

  • @k.ashutoshbaitharu3964
    @k.ashutoshbaitharu3964 Год назад

    Honestly, learnt a lot about JS from this course. I know there's still a lot to learn but this course gives in-depth knowledge on how things work behind the scene which I think is absolutely necessary!

  • @ashishgupta3237
    @ashishgupta3237 3 года назад

    I have completed namastey javasript total video in 3 days.... I never knew the behind the scene of javascript and browser.... After watching this playlist I am feeling like as javascript is so simple and need guider like you.... I am from Hindi medium and prefer only Hindi tutorial but your video is much simple as Hindi video and most important thing is basic stuff that no one touch it...... Please make video regularly ...❤❤❤❤❤❤❤❤

  • @vanukurunagesh9051
    @vanukurunagesh9051 3 года назад

    A real leader is who helps people to become leaders. I see a real leader in you brother Akshay Saini. Thank you so much for sharing your knowledge and for your efforts. 🙏🙏🙏

  • @lifewidabi
    @lifewidabi 3 года назад +2

    Async/Await
    Promises
    fetch
    are the topics, I would love to watch on this playlist.

  • @yashkhatwani3198
    @yashkhatwani3198 Год назад +1

    A function which takes another function as an input or returns a function from itself is called *higher order function*
    A function which is passed into higher order function is called *callback function*

  • @sanjan273
    @sanjan273 Год назад +1

    Bro ur teaching is next level and I am writing js code in dreams also thank you so much for ur efforts.u made me fall
    In love with java script.😊and ur are best teacher ever seen in my entire life 🧬

  • @rajorshilahiri5374
    @rajorshilahiri5374 3 года назад

    Please don't stop making JS videos. It keeps me motivated!

  • @vishalkaushal4311
    @vishalkaushal4311 3 года назад

    Oh man. I had to rewatch it twice to even start understanding.
    Hats off to your insights. You bring content and ask questions which I didn't even know existed.
    Thanks

  • @avijitghosh9472
    @avijitghosh9472 3 года назад

    Finally a video from where I now actually understand Higer-order functions and implementing generic function 💖.

  • @skyjoe3655
    @skyjoe3655 Год назад

    Hey bro, I've been a Java BE engineer and didn't really have knowledge of FE. Now I was told to work on FE as well and I'm struggling to get used to it. Even though I'm using React with TS but this your JS really helps to get used to FE in general as well as some popular concepts in other languages as well. Now I feel more confident by building up a castle on the hard rock instead of sands. Thanks man, keep it up.

  • @Shabareesha
    @Shabareesha 3 месяца назад

    Thank you very much, sir.
    I have been having difficulty comprehending higher order functions for the past two days. Now, I have grasped it.

  • @reshmashaik7015
    @reshmashaik7015 3 месяца назад

    Hello Mr. Saini, This is just phenomenal. An immense gratitude and thanx for this significant info. You realized me that web dev is not just writing code, creating app but what's happening behind the scene, how it actually works...a big applause sir.

  • @ektajaiswal12
    @ektajaiswal12 2 года назад

    Man oh man I just loved it. Thanks a million. I implemented functional programming first time today because of you. Being a fullstack developer it becomes really a pain to remember everything but you made my life simple. Much love❤️❤️❤️

  • @yashsharma6112
    @yashsharma6112 Год назад +1

    Never aware about Higher Order Functions was a concept from javascript. I thought Higher order component is a concept of ReactJS. Thanks for such a nice explanation

  • @yogeshsharma5168
    @yogeshsharma5168 3 года назад +1

    Akshay bhai please upload videos frequently...it would really be helpful because in lockdown we have alot time we don't want to waste it..In online lectures we don't understand anything instead of that we would love to watch your video...after completing every video I feel so confident you're doing great job❤️ just an request try to upload videos frequently

  • @rits3010
    @rits3010 3 года назад

    I have never hit subscribe button and clicked the bell icon this quick after watching the very first video on any other RUclips channel.

  • @muthuvel5k
    @muthuvel5k 3 года назад

    Mr Akshay Saini is a Great Master of JavaScript !!!

  • @Shivam-sl4sp
    @Shivam-sl4sp Год назад

    Man you really put in some work in teaching. I can see in you eyes how much you are enjoying explaining and that is why it comes out great. absolutely phenomenal job and thank you truly.

  • @pramodkharade5373
    @pramodkharade5373 3 года назад

    Since, I have started following you. I am now fully in love with JavaScript and it's power. Thanks for share such wonderful knowledge with us.
    I would like to request you for SINGLE SPA micro frontend with reactjs example. It would be worth to all us as follower.
    Thanks you brother 😊

  • @nishantgautam5742
    @nishantgautam5742 2 года назад +1

    Brother you are one of my best teachers.

  • @manojkumarparuchuri5920
    @manojkumarparuchuri5920 5 месяцев назад

    bro casually transformed student lives thank you akshay

  • @ravimishra8243
    @ravimishra8243 3 месяца назад

    16:33, just a fun watch i notice- watch calefully, literally moving forward to my first love of javascript.

  • @jayjani740
    @jayjani740 3 года назад

    Liked that you included how to create Polyfills as an additional part (as map, filter, reduce is also an example of HOF) in this video.

  • @aakarshchoudhary8862
    @aakarshchoudhary8862 9 месяцев назад +1

    you are the best techer to have

  • @imperativeemarketing5546
    @imperativeemarketing5546 2 года назад

    This is the first time I saw one of your videos. I don't like videos on YT very often, but I liked this one. You talked very fast and present a lot of information. Yet I understood you very well. So many times I watch programmer's videos and they are hard to understand. I've been interested in functional programming in JS for a long time, but havn't started looking into it yet, but I will now by watching all your videos.

  • @nishantshisodia4136
    @nishantshisodia4136 3 года назад +2

    Kitna time laga dia bhai
    Kbse wait kar rha thaa
    Thanks for providing such an amazing content for free ❤️

    • @akshaymarch7
      @akshaymarch7  3 года назад +1

      Mai bhi miss kar raha tha aapko. Ab firse sab shuru ❤️

    • @nishantshisodia4136
      @nishantshisodia4136 3 года назад

      @@akshaymarch7 love you bhai
      We middle class students need more people like you
      Bhagwan apko humesha khush rakhe 🙏

  • @sanjaykumawat5715
    @sanjaykumawat5715 3 года назад

    Thank you Akshay! So engaging and crystal clear that watching this, feels like 24 minutes completed in 2.4 minutes. Namaste JavaScript is best!

  • @smyasir050
    @smyasir050 11 месяцев назад

    I loss my hope but when i go through your video its a new energy i found myself high

  • @3722gopi
    @3722gopi 3 года назад

    1. Promises
    2. async/await
    Please make videos on these two topics. I am waiting for it.

  • @debashish538
    @debashish538 3 года назад

    Everytime I watch your videos I get glued to it till the end. Nice way to explaining

  • @studywithmanas4275
    @studywithmanas4275 5 месяцев назад

    03:01 Higher order functions are essential for functional programming
    06:02 Calculating area, circumference, and diameter of circles using higher-order functions.
    09:03 Optimizing code using the DRY principle and creating a generic function for calculating area
    12:04 Creating a generic function to pass logic and calculate different values based on input.
    15:05 Functional programming allows code abstraction and reusability through higher-order functions.
    18:06 Functional programming focuses on reusability and modularity, breaking down logic into smaller functional units.
    21:07 map function creates a new array and iterates over each element to return the output
    24:03 Higher order functions allows for modular and reusable code through the use of callback functions.

  • @MasudRahman-co7nd
    @MasudRahman-co7nd Год назад

    after I watch the video, I understand higher order function and how it work, thank you so much for teaching us , lots of love for you ♥

  • @shakeebarsalan7030
    @shakeebarsalan7030 3 года назад

    Unbelievable excellent. This is how a knowledgeable man helps to other to the whole community. Thank you ❤ very much.

  • @saurabhpandey2018
    @saurabhpandey2018 3 года назад +2

    Sir please keep this playlist alive 😍😍

  • @yogeshsharma5168
    @yogeshsharma5168 3 года назад

    You are god of javascript 🔥...no one can explain like the way you explain..you can't even imagine how happy i am that you came back🌟

  • @harshitsharma4569
    @harshitsharma4569 3 года назад

    your way of explaining the concepts is too good and and showing how much important it is was best part 🤯

  • @39PlYR
    @39PlYR 2 года назад

    These videos are so helpful in understanding JavaScript explained like nobody else! Thank you very much for these gems. Hope life is good!