The difference between Callback.call () and callback () in JS

Source: Internet
Author: User

The difference between Callback.call () and callback () in JS
What is the difference between Callback.call () and callback () in JS, for example:
function A () {
Alert (' hello! ');
}
Function B (callback) {
Callback ();
}
Function C (callback) {
Callback.call ();
}
function Test () {
b (a);
C (a);
}
In the test function, the effects of B and C are the same, and the callback function A is executed. What is the difference between these two usages?

----------------------------------------------------------------------------------------------

Callback is a callback function. Functions have call and apply methods. The binding context can be dynamic when the function executes.
Because you are here Callback.call () did not pass in any parameters. So Callback.call () is equivalent to callback (). It's not any different.
The context of a function primarily affects the This object in the function.
Under normal circumstances this object is automatically specified according to the run context.
However, the context can be set manually using the call method or the Apply method. The equivalent can be arbitrarily adjusted to whom the this object in the function points.

The difference between Callback.call () and callback () in JS

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.