Home  >  Article  >  Web Front-end  >  In-depth study of Rest parameters and parameter default values ​​​​in JavaScript_Basic knowledge

In-depth study of Rest parameters and parameter default values ​​​​in JavaScript_Basic knowledge

WBOY
WBOYOriginal
2016-05-16 15:48:341095browse

This article will discuss two features that make JavaScript functions more expressive: Rest parameters and parameter default values.
Rest parameters

Usually, we need to create a function with variable parameters. Variable parameters means that the function can accept any number of parameters. For example, String.prototype.concat can accept any number of strings as arguments. Using Rest parameters, ES6 provides us with a new way to create variadic functions.

Let’s implement a sample function containsAll to check whether a string contains certain substrings. For example, containsAll("banana", "b", "nan") will return true and containsAll("banana", "c", "nan") will return false.

The following is the traditional implementation:

function containsAll(haystack) {
 for (var i = 1; i < arguments.length; i++) {
  var needle = arguments[i];
  if (haystack.indexOf(needle) === -1) {
   return false;
  }
 }
 return true;
}
 
function containsAll(haystack) {
 for (var i = 1; i < arguments.length; i++) {
  var needle = arguments[i];
  if (haystack.indexOf(needle) === -1) {
   return false;
  }
 }
 return true;
}

This implementation uses the arguments object, which is an array-like object that contains the actual parameter list when the function is called. This code is exactly what we want, but its readability is not optimal. The function has only one formal parameter haystack, so it is impossible to know at a glance that the function requires multiple parameters. When traversing arguments, you need to pay special attention to the starting index of the traversal being 1 instead of the common 0, because arguments[0] is the function The formal parameter haystack when defined. If we want to add some parameters before or after the haystack parameter, we have to update the inner loop. Rest parameters solve these problems. Here is how to use Rest parameters:

function containsAll(haystack, ...needles) {
 for (var needle of needles) {
  if (haystack.indexOf(needle) === -1) {
   return false;
  }
 }
 return true;
}
 
function containsAll(haystack, ...needles) {
 for (var needle of needles) {
  if (haystack.indexOf(needle) === -1) {
   return false;
  }
 }
 return true;
}

Both of the above implementations meet our needs, but the latter contains a special ...needles syntax. Let's take a look at the details when calling containsAll("banana", "b", "nan"). The parameter haystack will be filled with the first argument of the function as usual, with the value "banana" and the ellipses in front of needsles. Indicates that it is a Rest parameter, all remaining actual parameters will be put into an array, and the array will be assigned to the needs iteration. In this call, the value of needs is ["b", "nan"]. Then, the normal function is executed.

Only the last function of the function can be used as a Rest parameter. When the function is called, the parameters before the Rest parameter will be filled in normally, and the other parameters will be put into an array, and the array will be used as Rest The value of the parameter. If there are no more parameters, then the value of the Rest parameter is an empty array []. The value of the Rest parameter will never be undefined.
Default value of parameter

Usually, when calling a function, the caller does not need to pass all possible parameters, and those parameters that are not passed need a reasonable default value. JavaScript has a fixed default value of undefined for parameters that are not passed. In ES6, a new way to specify default values ​​for arbitrary parameters was introduced.

Look at the example below:

function animalSentence(animals2="tigers", animals3="bears") {
  return `Lions and ${animals2} and ${animals3}! Oh my!`;
}
 
function animalSentence(animals2="tigers", animals3="bears") {
  return `Lions and ${animals2} and ${animals3}! Oh my!`;
}

After = for each parameter there is an expression that specifies the default value when the parameter is not passed. So, animalSentence() returns "Lions and tigers and bears! Oh my!", animalSentence("elephants") returns "Lions and elephants and bears! Oh my!", animalSentence("elephants", "whales") returns "Lions and elephants and whales! Oh my!".

A few details to note about parameter default values:

Unlike Python, expressions for parameter default values ​​are evaluated from left to right when the function is called, which means that the expression can use parameters that have been filled in previously. For example, we could make the function above a little more interesting:

function animalSentenceFancy(animals2="tigers",
  animals3=(animals2 == "bears") &#63; "sealions" : "bears")
{
 return `Lions and ${animals2} and ${animals3}! Oh my!`;
}

 
function animalSentenceFancy(animals2="tigers",
  animals3=(animals2 == "bears") &#63; "sealions" : "bears")
{
 return `Lions and ${animals2} and ${animals3}! Oh my!`;
}

Then, animalSentenceFancy("bears") will return "Lions and bears and sealions. Oh my!".

Passing undefined is equivalent to not passing the parameter. Therefore, animalSentence(undefined, "unicorns") will return "Lions and tigers and unicorns! Oh my!".
If no default value is specified for a parameter, the default value of the parameter is undefined, so

function myFunc(a=42, b) {...}
 
function myFunc(a=42, b) {...}

is equivalent to

function myFunc(a=42, b=undefined) {...}
 
function myFunc(a=42, b=undefined) {...}

Discard arguments

With Rest parameters and default values ​​for parameters, we can ditch the arguments object entirely, making our code more readable. Additionally, the arguments object adds to the difficulty of optimizing JavaScript.

Hopefully the above two new features can completely replace arguments. As a first step, avoid using arguments objects when using Rest parameters or parameter default values. If the arguments object will not be removed immediately, or never, then it is also best to avoid using Rest parameters or parameters. The default is to use the arguments object.
Compatibility

Firefox 15 or above already supports these two new features. However, beyond that, there is no other browser support. Recently, V8's experimental environment has added support for Rest parameters, and there is an issue with parameter default values. JSC has also raised some issues with Rest parameters and parameter default values.

Both compilers, Babel and Traceur, already support parameter default values, so you can use them boldly.
Conclusion

Although technically these two new features do not introduce new behavior to functions, they can make some function declarations more expressive and readable.

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