search
HomeWeb Front-endJS TutorialDetailed explanation of apply and call functions in JavaScript_jquery

The first time I translated a technical article, it was hilarious!

Original translation:

Function.apply and Function.call in JavaScript

The first paragraph is omitted.

Each JavaScript function will have many attached methods, including toString(), call() and apply(). It may sound strange to you that a function might have its own methods, but remember, every function in JavaScript is an object. Take a look at this article to review (refresher) JavaScript features. You may also want to know the difference between functions and methods in JavaScript. I think the descriptions of "function" and "method" are just JavaScript conventions. Functions stand on their own (for example: alert()), and methods are properties (dictionary) of an object inside the function. We call methods through the object. Each JavaScript object has a toString() method. The following is an example of code. In a function object, we can use the toString() method.

function foo(){
 alert('x');
}
alert(foo.toString());

Because functions are objects, they have their own properties and methods. We can think of them as data. In this article, we only focus on the two function methods apply() and call().

We start with the following code:

var x = 10;
function f(){
 alert(this.x);
}
f();

We define a global function f(). f() accesses the variable x through the this keyword, but it should be noted that we cannot call this function through an instance of an object. What object does this point to? this will point to this global object. Our variable x is defined in this global object. The above code can run normally, and the result will be a dialog box with 10 displayed in the dialog box.

We can call call() and apply() through this. As the following example shows how to use call():

var x = 10;
var o = { x : 15};
function f(){
 alert(this.x);
}
f();
f.call(o);

Calling f() first will display the dialog box 10, because this points to the global object at this time. Then we call the call() method of the f function. The incoming parameter is o, and the running result shows the value of the x attribute in o, 15. The call() method will use its first parameter as the this pointer of the f function. In other words, we will tell the runtime which object this in the f function points to.

This jump sounds a bit funny, even a bit abnormal to C, Java and C# programmers. These are the fun parts of ECMAScript.

You can also pass parameters to the function through call():

var x = 10;
var o = { x : 15};
function f(){
 alert(this.x);
}
f();
f.call(o);

apply() is similar to call(), except that apply() requires that the second parameter must be an array. This array will be passed as a parameter to the target function.

var x = 10;
var o = {x : 15};
function f(message) {
 alert(message);
 alert(this.x);
}
f('invoking f');
f.apply(o, ['invoking f through apply']);

The apply() method is useful because we can create a function without caring about the parameters of the target method. This function can pass additional parameters to the method through the second array parameter of apply().

var o = {x : 15};
function f1(message1) {
 alert(message1 + this.x);
}
function f2(message1, message2) {
 alert(message1 + (this.x * this.x) + message2);
}
function g(object, func, args) {
 func.apply(object, args);
}
g(o, f1, ['the value of x = ']);
g(o, f2, ['the value of x squared = ', '. Wow!']);

There is something wrong with this syntax. In order to call the apply() method, we force the target function to use the parameters in the array. Fortunately, there is a way to make this syntax simpler. Before that, we must introduce one: parameter identifiers.

In JavaScript, each function actually has a variable-length parameter list. This means that even when a function has only one parameter, we can pass 5 parameters to it. The following code will have no errors and the result will be "H".

function f(message) {
 alert(message);
}
f('H', 'e', 'l', 'l', 'o');

In f(), if we don’t want to accept other parameters, we can use the keyword arguments. arguments represents a parameter object, which has an attribute representing the length similar to an array.

function f(message) {
 // message的值和arguments[0]是一样的
 for(var i = 1; i < arguments.length; i++){
  message += arguments[i];
 }
 alert(message);
}
// 结果显示“Hello”
f('H', 'e', 'l', 'l', 'o');

You should know that, strictly speaking, arguments is not an array. arguments has a length attribute, but there are no split, push, or pop methods. In the previous g() function, we can copy the required parameters from arguments to form an array, and then pass this array to apply().

var o = {x : 15};
function f(message1, message2) {
 alert(message1 + ( this.x * this.x) + message2);
}
function g(object, func) {
 // arguments[0] = object
 // arguments[1] = func
 var args = [];
 for(var i = 2; i < arguments.length; i++) {
  args.push(arguments[i]);
 }
 func.apply(object, args);
}
g(o, f, 'The value of x squared = ', '. Wow!');

When we call g(), we can pass additional arguments as parameters instead of stuffing the arguments into an array.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!