Home > Web Front-end > JS Tutorial > body text

Example summary of JS call() and apply() method usage

coldplay.xixi
Release: 2020-07-13 17:16:29
forward
1854 people have browsed it

Example summary of JS call() and apply() method usage

Recently I encountered the call() method and apply() method in javascript, and at some point these two methods are indeed very important, so let me summarize Let’s talk about the uses and differences between these two methods.

Each function contains two non-inherited methods: call() method and apply() method.

Similar points: These two methods have the same effect.

Calling a function in a specific scope is equivalent to setting the value of this object in the function body to expand the scope in which the function runs.

Generally speaking, this always points to the object that calls a certain method, but when using the call() and apply() methods, the point of this will be changed.

call()Example of method usage:

  //例1
  

  //例2
  var Pet = {
    words : '...',
    speak : function (say) {
      console.log(say + ''+ this.words)
    }
  }
  Pet.speak('Speak'); // 结果:Speak...

  var Dog = {
    words:'Wang'
  }

  //将this的指向改变成了Dog
  Pet.speak.call(Dog, 'Speak'); //结果: SpeakWang
Copy after login

apply()Example of method usage:

  //例1
  

  //例2
  function Pet(words){
    this.words = words;
    this.speak = function () {
      console.log( this.words)
    }
  }
  function Dog(words){
    //Pet.call(this, words); //结果: Wang
    Pet.apply(this, arguments); //结果: Wang
  }
  var dog = new Dog('Wang');
  dog.speak();
Copy after login

Difference: receiving The parameters are different.

The apply() method receives two parameters, one is the scope in which the function runs (this), and the other is the parameter array.
Syntax: apply([thisObj [,argArray] ]);, call a method of an object, and replace the current object with another object.

Note: If argArray is not a valid array or is not an arguments object, a
TypeError will result. If neither argArray nor thisObj is provided, the Global object will be used as thisObj.

call() method The first parameter is the same as the apply() method, but the parameters passed to the function must be listed.
Syntax: call([thisObject[,arg1 [,arg2 [,...,argn]]]]);, apply a method of a certain object and replace the current object with another object.

Description: The call method can be used to call a method instead of another object. The call method can change the object context of a function from the initial context to the new object specified by thisObj. If the thisObj parameter is not provided , then the Global object is used for thisObj.

Usage example 1:

  function add(c,d){
    return this.a + this.b + c + d;
  }

  var s = {a:1, b:2};
  console.log(add.call(s,3,4)); // 1+2+3+4 = 10
  console.log(add.apply(s,[5,6])); // 1+2+5+6 = 14
Copy after login

Usage example 2:

  
Copy after login

The above is the entire content of this article, I hope it will be helpful to everyone's learning.

Related learning recommendations: javascript video tutorial

The above is the detailed content of Example summary of JS call() and apply() method usage. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:jb51.net
Statement of this Website
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!