This--Apply or call

Source: Internet
Author: User

Both the apply and call methods can toggle the context in which the function executes, that is, the object that changes this binding. Apply and call are similar, except that one requirement is an array when passing in parameters, and one requirement is to be passed in separately. So let's take the example of apply :

var name = "Window";         var someone = {      "Bob",      function() {          alert (this  . Name);      }  ;     var other = {      "Tom"  };        Someone.showname ();      // Bob   Someone.showName.apply ();    // window   Someone.showName.apply (other);    // Tom  

As you can see, when you access the method in the object normally, this points to the object. When apply is used, the current object of this is global, and when apply has parameters, this is the current object of this parameter.

This--Apply or call

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.