Maison > interface Web > js tutoriel > le corps du texte

Comment transmettre des arguments variables des tableaux aux fonctions JavaScript ?

Susan Sarandon
Libérer: 2024-11-13 14:05:02
original
851 Les gens l'ont consulté

How to Pass Variable Arguments from Arrays to JavaScript Functions?

Passing Variable Arguments to JavaScript Functions from Arrays

In JavaScript, it is possible to pass a variable number of arguments to a function, including from an array.

Using the Spread Syntax (ES6)

Since ES6, the spread operator (...) can be used to pass an array's elements as individual arguments to a function:

func(...arr);
Copier après la connexion

Using the rest Parameter (ES6)

If you expect to treat the arguments as an array, you can use the rest parameter:

function func(...args) {
  args.forEach(arg => console.log(arg))
}

func(...values)
Copier après la connexion

Using apply

Another method to pass an array as arguments is to use the apply() method:

func.apply('test', arr);
Copier après la connexion

Note that in non-strict mode, using null as the first argument will cause 'this' in the function to refer to the window object.

Converting the Arguments Object to an Array

The arguments object is not an array, but it can be converted using:

const argsArray = [...arguments];
Copier après la connexion

Additional Notes

  • You can also pass an arbitrary number of arguments directly to a function.
  • You can determine the expected number of arguments for a function using test.length.

In summary, using the spread syntax is the preferred method for passing variable arguments from an array to a JavaScript function, due to its concise syntax and ease of use.

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal