JavaScript Apply function Small case

Source: Internet
Author: User

//callback function 1 functionCallback (A,B,C) {alert (a+b+c); }    //callback function 2functionCallback2 (A, b) {alert (a+b); }    //This method does some action, and then calls the callback functionfunctionDoCallback (Fn,args) {fn.apply ( This, args); }        functionTest () {//dynamically invoke methods, and pass parametersDoCallback (callback2,[' A ', ' B ']); DoCallback (callback,[' A ', ' B ', ' C ']); }  

JavaScript Apply function Small case, previously did not pay much attention to the Apply function,

Function.apply (Obj,args) method can receive two parameters
OBJ: This object will replace the This object in the function class
Args: This is an array, which is passed as a parameter to function (args-->arguments)

Similar to the call method, the same as apply, except that the parameter list is not the same.

The parameters of the call method are listed, and apply can be replaced with a arguments, which can be understood as an array.

JavaScript Apply function Small case

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.