Это видео недоступно.
Сожалеем об этом.

JavaScript Practical Applications of Call, Apply and Bind functions

Поделиться
HTML-код
  • Опубликовано: 22 окт 2017
  • Utility of Call, Apply and Bind Methods, where and how to use them.
    call() apply() and Bind() can be used in react angular or vuejs.
    #JavaScript #bind #callapplybind
    *My Udemy Courses
    www.udemy.com/...
    www.udemy.com/...
    Follow me for technology updates
    * / techsith
    * / techsith
    * / techsith1
    * / 13677140
    * / patelhemil
    Help me translate this video.
    * www.youtube.co...
    Note: use translate.goog... to translate this video to your language. Let me know once you do that so i can give you credit. Thank you in advance.

Комментарии • 118

  • @bot_matrix
    @bot_matrix 5 лет назад +3

    Thank you sir! Compared to other RUclips instructors, you are calm, collected and make everything easy to digest. You get a like from me!

    • @Techsithtube
      @Techsithtube  5 лет назад

      Thanks for the very very positive comment. :) Keep on learning!

  • @DanielDogeanu
    @DanielDogeanu 5 лет назад +4

    I was asked exactly this at the interview, today. I had no idea what they did. Now I know. Thanks!

    • @Techsithtube
      @Techsithtube  5 лет назад +1

      Its good that you know now. :) You will be prepared for the next interview.

  • @haseebshahid5148
    @haseebshahid5148 5 лет назад +4

    that = this ---- The classic arrow functions solved that ugly design pattern. great video!

    • @juancarlosfigueroa617
      @juancarlosfigueroa617 4 года назад

      That's the thing i was going to mention with arrow functions you also don't need to use bind since the arrow functions keep the scope open to the father scope

  • @veronicaeulenberg6612
    @veronicaeulenberg6612 4 года назад +2

    "Binding outer this to inner this." That's a pretty good explanation for binding this.

    • @Techsithtube
      @Techsithtube  4 года назад +1

      Veronica, thanks for watching!

  • @SoccerChannelviews
    @SoccerChannelviews 6 лет назад +3

    great sir! keep going, this the real thing... supporting you till you get success, just keep making these awesome videos up

    • @Techsithtube
      @Techsithtube  6 лет назад

      Thanks for all the support and thanks for watching! :)

  • @javascript_developer
    @javascript_developer 6 лет назад +1

    Its very clear for call and apply. For bind I am very confused. Will do more exercise.

    • @Techsithtube
      @Techsithtube  6 лет назад +1

      think of call and apply as renting tempararily . And bind is more like making it own.

  • @kakmca
    @kakmca 4 года назад

    Nearly 3 years before I saw his video related to Angular Testing. I was so impressed, I liked his teaching very much. I became his fan.
    After 3 years, today I found this video of him. Sorry sir, but this comment's targeted to you. You please speak with your slang sir, don't try to create new slang.

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

    thank you for the awesome. you make javascript understand very easy.

  • @yuvisaran
    @yuvisaran 5 лет назад +2

    Great and simple explanation thank you so much

  • @Welcometomyjourney20
    @Welcometomyjourney20 6 лет назад

    Very helpful. Thanks. I think instead of using call/apply, better & shorter now to use es6 spread operator, to copy functionality from obj to obj.
    Commonly used in react now.
    Example:
    function doSomething (x,y,z){ }
    let args = [a,b,c]
    doSomething(...args)

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

    great work

  • @miroslavspirkoski5623
    @miroslavspirkoski5623 5 лет назад

    Thanks for these amazing Javascript series, these series are a real lifesaver!

  • @soumyaranjanpanda7532
    @soumyaranjanpanda7532 9 месяцев назад

    Helpful video

  • @aditibhatia100
    @aditibhatia100 6 лет назад

    Amazing video, clears all the doubts in a very simple manner

  • @SKU009
    @SKU009 6 лет назад +15

    Must watch video, if anybody want to understand call, bind and apply.

  • @patrickdooley4031
    @patrickdooley4031 4 года назад

    Thanks TechSith. Great Explanation!

  • @riccarrasquilla379
    @riccarrasquilla379 9 месяцев назад

    good tips. thx

  • @sirishaepari8938
    @sirishaepari8938 4 года назад +1

    @techsith Could also help us clear the difference between call, apply, bind vs prototype vs __proto__ ? As a developer, when/how should you use what?

  • @binayakgshankar9188
    @binayakgshankar9188 6 лет назад +4

    Watched more than 10 videos on the same, but this one cleared my concepts

    • @Techsithtube
      @Techsithtube  6 лет назад +1

      Binayak, I am gald that you got the concept. Thanks for watching! :)

  • @joseigor8556
    @joseigor8556 5 лет назад +1

    Sir, your tutorials are amazing!

  • @olajumokeboladale-lawal8688
    @olajumokeboladale-lawal8688 3 года назад +1

    To turn the argument into an array, we could also do make the argument a spread operator when passing it into the function then convert it into an array by saying:
    Let arrArgs;
    Let argsToArray= function(){
    return arrArgs=[...arguments];
    };
    Right?
    And then calling the function argsToArray(1,2,3) should console[1,2,3]?

  • @prerakdoshi3509
    @prerakdoshi3509 6 лет назад +2

    Very Helpful. Thank you Sir

  • @igorcweb
    @igorcweb 6 лет назад +1

    This is gold!

  • @nagaprasad681
    @nagaprasad681 6 лет назад

    you big bro your tutorials are rocking !! Respect !!

  • @ManontheBroadcast
    @ManontheBroadcast 6 лет назад +5

    Could we also use Array.from() to turn the arguments object into an array? ...

    • @Techsithtube
      @Techsithtube  6 лет назад +4

      yes that should also give the same result.

  • @vinodbhatt3789
    @vinodbhatt3789 5 лет назад +1

    Very useful..

  • @MainDol1
    @MainDol1 6 лет назад +2

    Very nicely explained!

  • @rampande5830
    @rampande5830 5 лет назад

    thank you for sharing valuable knowledge.

  • @seolead5826
    @seolead5826 5 лет назад +3

    At 7:03 you had me laugh, great examples thanks

    • @Techsithtube
      @Techsithtube  5 лет назад +1

      I am glad that you found it funny. thanks for watching! :)

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

    You can do Math.min(...numArray); to get same results as apply method

  • @vincesanchez7790
    @vincesanchez7790 4 года назад +1

    Great tutorial

  • @RethinkingUI
    @RethinkingUI 5 лет назад +1

    worth watching it .

  • @soumitragiri1353
    @soumitragiri1353 4 года назад

    all the concept is going to clear, but where should i will be use bind(). for me , bind has not clear. could you please elborate why new button object is loosely couple bonding with prototype?

  • @srihitha4721
    @srihitha4721 4 года назад

    Sir, I have a same scenario, and want to unit test lion class. Problem is cat calls a function of mamal which returns a promise. How do I unit test this scenario from lion class.

  • @dhimanchakraborty5639
    @dhimanchakraborty5639 4 года назад

    Sir, one confusion I have. When I am declaring a function like const fn = function(something) {} and call it with an object, javascript call function works, but when I try the same with arrow functions like const fn = something => {}, it doesn't work. I tried to print "this" in console with console.dir(this), and I got the object and window object for the two cases respectively. Please let me know why this thing is happening? Sir, your videos cleared many painful areas in JavaScript. Thank you so much.

  • @dmytro891
    @dmytro891 6 лет назад

    Great video, thank you!

  • @ajoco99
    @ajoco99 4 года назад

    Nice tuto.thanks

  • @aumgnfeig9367
    @aumgnfeig9367 4 года назад

    How are you defining "that" in the render function without using var, let or const?

  • @hkn1853
    @hkn1853 6 лет назад

    excellent video god bless you

  • @madhanj5036
    @madhanj5036 4 года назад

    With New ES 6 feature, to find out the Minimum value from array use REST operator let myarr= [1,2,3]; console.log(Math.min(...myarr)); Its just FYI for all

  • @osazemeusen1091
    @osazemeusen1091 6 лет назад

    This is better than any paid tutorial I have gone through. Thanks
    why didn't you pass the "this" keyword into [].slice.call(arguments)?
    Observation: Math.min(...numArray) could also be substituted inplace of Math.min.apply(null, numArray)

    • @Techsithtube
      @Techsithtube  6 лет назад

      [].slice.call(arguments) just slices the argument object to an array. so there is not need to pass 'this' here.

  • @sergeymigel4680
    @sergeymigel4680 4 года назад

    thank you

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

    Any idea why the first apply example doesn't work with arrow functions?

  • @fatimahal-khateeb4627
    @fatimahal-khateeb4627 4 года назад

    why click loosely bounded to new object? 10:56

  • @kenosyt3697
    @kenosyt3697 4 года назад

    Why when you call the mammal constructor you use this and legs and not only legs????????

  • @ruchirai5775
    @ruchirai5775 5 лет назад

    At 13.54 I can even use arrow function to get this context ? We don't need to use bind isn't it ?

    • @Techsithtube
      @Techsithtube  5 лет назад

      Yes ruchi, you can use arrow function there.

  • @aswebdev
    @aswebdev 6 лет назад

    Is it correct to say that the spread operator (...) has reduced a lot of the complexity that was brought about by call/apply/bind ?
    For e.g.
    We can do min like this using spread operator in es6 :-
    Math.min(...numArray);

    • @Techsithtube
      @Techsithtube  6 лет назад

      yep, spread operators have some really good use. and it has simplify lots of complex things.

  • @2002utube
    @2002utube 5 лет назад

    I am not sure where I am in my JavaScript learning journey..suppose I practiced all these 52 Videos of advanced JavaScript and thoroughly understood the concepts all these 52 Videos where do I stand in my JavaScript journey...what should I do further to reinforce my learning of JavaScript so as to reach to an expert level?

    • @Techsithtube
      @Techsithtube  5 лет назад

      I would suggest using those concepts after learning them . Either create your own tiny JS library. or use react where you can use your JS experience. With JS if you don't use it you lose it.

  • @dheerpandey
    @dheerpandey 6 лет назад

    Hi Techsith,
    I am getting "add clicked", when I calling "newButton.click();", how it is different from
    let looseClick = newButton.click;
    looseClick();
    Running above code in chrome, also when I am executing the code in node console, getting exception i.e. => TypeError: Cannot read property 'content' of undefined.
    Why this is happening, please clarify.

    • @Techsithtube
      @Techsithtube  6 лет назад

      looseClick is not part of the object anymore and not bound to the button so it wont work . And newButton.click() is part of the object . I am not sure why its not working in node. Try to debug in node.

  • @GabrielVasile
    @GabrielVasile 5 лет назад

    Easier in ES6 with the spread/rest operator
    function argsToArray(...args) {
    console.log(args);
    }
    and
    Math.min(...numArray)

  • @taruchumccullough9045
    @taruchumccullough9045 4 года назад

    Thank you !!

  • @vickyjain7110
    @vickyjain7110 6 лет назад

    Please try to provide links to which u refer in ur video...
    In this video u said u ll provide template string tutorial link 10:23 .. which u haven't provided..
    Thanks

  • @abinayahui1905
    @abinayahui1905 6 лет назад

    Great

  • @believelody5531
    @believelody5531 6 лет назад

    About "bind", in myObj object I did render() {
    this.asyncGet(this.parse);
    } and it works. So why using bind?
    Thanks for your great tutorial

  • @elfpimp1
    @elfpimp1 6 лет назад

    Hehehe, I keep refactoring your functions to fat arrow as you type them unless they're not refactorable!! :0)

  • @maskman4821
    @maskman4821 6 лет назад +1

    what do you mean by translate your video to other language? like I translate what you said in this video to chinese and send to you, and you will put chinese subtitle as an option in the video???

    • @Techsithtube
      @Techsithtube  6 лет назад

      I am not sure for how to do it for Chinese but youtube provides a link for translation of each video . here is a link for this video.
      ruclips.net/user/timedtext_video?ref=share&v=AYVYxezrMWA

  • @saransh9306
    @saransh9306 6 лет назад

    You said we can use call/apply when we want to borrow functionality from another objects...But Why would you use call or apply to borrow functionality from other objects when you can just simply do obj.FunctionName() inside another object to borrow functionality from other object?
    Example:
    var obj = new function(){
    this.prop = 'inside obj';
    this.Add = function(a,b) {return a+b};
    this.getinfo = function(){console.log('inside getinfo of obj object')};
    }
    var anotherObject = new function(){
    this.getaddition = function(a,b){ return obj.Add(a,b) }; //borrowed functonality from obj without using bind.
    }
    what would be the use case in above example where using call/apply/bind is a must ??

    • @Techsithtube
      @Techsithtube  6 лет назад +1

      in your example the function that you are tying to call doesnt have 'this' so it would work . if you want to use one objects method on another object you have to call the new objects 'this' ..

    • @saransh9306
      @saransh9306 6 лет назад

      Thank you for clearing the doubt here..

  • @abhayagarwal5097
    @abhayagarwal5097 4 года назад

    After 5mins I felt like I was lost in desert , didn't understand this cat example at all😑

  • @otaviomota6122
    @otaviomota6122 5 лет назад

    i spend 1 hour to realize that these functions don't work using arrow function. Or i did wrong ? Do you have any tips that helps me to know when use i have to use arrow function and "normal function" ?

    • @Techsithtube
      @Techsithtube  5 лет назад +1

      think of arrow functions pure functions that don't have its own this. so if you want to use this inside your function, don't use arrow function. I have a video on arrow function where I explain it.

  • @nafeesahmed4942
    @nafeesahmed4942 6 лет назад

    I was hoping you will continue with angular 4.0,

    • @Techsithtube
      @Techsithtube  6 лет назад +1

      I am still continuing with Angular tutorials . I will also release on other topics as well.

  • @kavind8938
    @kavind8938 6 лет назад

    But Dude the below code works fine.. Is this because i am not using "let" .. can u explain plz
    var test=function (name){
    this.name=name;
    }
    test.prototype.click=function(){
    console.log("===>"+this.name+" clicked");
    }
    var b=new test('tesing');
    b.click();

    • @Techsithtube
      @Techsithtube  6 лет назад +1

      there shouldnt be any problem with let etither. the example you sent would work in any case . now you can do this and see if it works. this were you have to rebind the method back to the object.
      var test=function (name){
      this.name=name;
      }
      test.prototype.click=function(){
      console.log("===>"+this.name+" clicked");
      }
      var b=new test('tesing');
      var bc = b.click;
      bc();

    • @kavind8938
      @kavind8938 6 лет назад

      Practical Applications for PROMISE plzzzz

  • @AkhiVlogsandtalks
    @AkhiVlogsandtalks 4 года назад

    Hi sir , I want to translate into Telugu ,pls provide the link

  • @jainshilpi3
    @jainshilpi3 6 лет назад

    I am not that much clear with call,for call we are passing obj n value I donot understand this line mammal.call(this,legs) could u pls explain?

    • @Techsithtube
      @Techsithtube  6 лет назад

      mammal is a constructor but also a function that sets some property with this.legs = legs; and when you call from another function mammal.call(this,legs) which means you are calling mammal function on using this of which ever function calling it from. for more info on that you can refer to this playlist ruclips.net/p/PL7pEw9n3GkoW0ceMeoycg9D00YjPAbtvt

  • @mr.techno-era7474
    @mr.techno-era7474 3 года назад

    @3:55 Javascript - weird language

  • @elfpimp1
    @elfpimp1 6 лет назад

    Btw, subbed!

  • @TropicalTaquito
    @TropicalTaquito 6 лет назад

    I’m trying to understand bind but I still don’t get it :l

  • @sushmithareddy4722
    @sushmithareddy4722 6 лет назад

    Very difficult to understand. Please maybe make another video.

  • @saransh9306
    @saransh9306 6 лет назад

    didn't get how legs property became part of cat by calling mammal.call(this,legs) ? can you please explain the logic behind it?

    • @Techsithtube
      @Techsithtube  6 лет назад +1

      mammal is a function that does "this.legs = legs" so if i call it inside the cat. its like cat.legs = legs. becase 'this' inside cat is actually cat. make sense?.

    • @saransh9306
      @saransh9306 6 лет назад

      Yes it does make sense..Thank you:)

  • @jsnode2075
    @jsnode2075 6 лет назад

    is there any upcoming React Series?

    • @Techsithtube
      @Techsithtube  6 лет назад

      yes, I am going to start releasing by next week. Let me know if you have specific topics that you want to me to cover. Thanks for watching!

  • @phanindrakumarpulletikurti
    @phanindrakumarpulletikurti 6 лет назад

    Do you stopped angular4

  • @kiransahu157
    @kiransahu157 5 лет назад +1

    Please don't use reserved key words for variable or function

    • @Techsithtube
      @Techsithtube  5 лет назад +1

      I wonder which reserve keyword I used?

    • @kiransahu157
      @kiransahu157 5 лет назад

      ​@@Techsithtube you are doing a great job, Sir. Started watching all of your JS videos. All are awesome.
      But while understanding, getting confusions like button.prototype.'click ', after few min, I realize 'click ' is just a prototype property of the button.
      But i'm ok now.
      Thanks for the response. :p

  • @Atif1702
    @Atif1702 6 лет назад

    Who the hell are dislikers? what the heck you want more?

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

    It's hard for me to perceive real world usage each time

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

      It is hard often times to times visualize application of such concepts. But, its heavely used in large projects.

  • @greensmarketingsolutions5
    @greensmarketingsolutions5 5 лет назад

    Bind is so confusing

  • @rikilamadrid
    @rikilamadrid 6 лет назад

    Honest question, why in most of the videos your sentences are cut off?

    • @Techsithtube
      @Techsithtube  6 лет назад

      I try to cut the dead space between sentences. and unfortunately the editor i am using to do that doesn't have the refined tool so its usually half a second off .

  • @idontknownoori500
    @idontknownoori500 4 года назад

    Stop comming in my youtube 😵

  • @hemalpatel19
    @hemalpatel19 6 лет назад

    Very nicely explained!