Pass unknown number of arguments into JavaScript function

Javascript

Javascript Problem Overview


Is there a way to pass an unknown number of arguments like:

var print_names = function(names) {
    foreach(name in names) console.log(name); // something like this
}

print_names('foo', 'bar', 'baz');

Also, how do I get the number of arguments passed in?

Javascript Solutions


Solution 1 - Javascript

ES3 (or ES5 or oldschool JavaScript)

You can access the arguments passed to any JavaScript function via the magic arguments object, which behaves similarly to an array. Using arguments your function would look like:

var print_names = function() {
     for (var i=0; i<arguments.length; i++) console.log(arguments[i]);
}

It's important to note that arguments is not an array. MDC has some good documentation on it: https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Functions#Using_the_arguments_object

If you want to turn arguments into an array so that you can do things like .slice(), .push() etc, use something like this:

var args = Array.prototype.slice.call(arguments);

ES6 / Typescript

There's a better way! The new rest parameters feature has your back:

var print_names = function(...names) {
    for (let i=0; i<names.length; i++) console.log(names[i]);
}

Solution 2 - Javascript

ES6/ES2015

Take advantage of the rest parameter syntax.

function printNames(...names) {
  console.log(`number of arguments: ${names.length}`);
  for (var name of names) {
    console.log(name);
  }
}

printNames('foo', 'bar', 'baz');

There are three main differences between rest parameters and the arguments object:

  • rest parameters are only the ones that haven't been given a separate name, while the arguments object contains all arguments passed to the function;
  • the arguments object is not a real array, while rest parameters are Array instances, meaning methods like sort, map, forEach or pop can be applied on it directly;
  • the arguments object has additional functionality specific to itself (like the callee property).

Solution 3 - Javascript

var 
print_names = function() {
	console.log.apply( this, arguments );
};

print_names( 1, 2, 3, 4 );

Solution 4 - Javascript

function print_args() {
    for(var i=0; i<arguments.length; i++)
        console.log(arguments[i])
}

Solution 5 - Javascript

There is a hidden object passed to every function in JavaScript called arguments.

You would just use arguments.length to get the amount of arguments passed to the function.

To iterate through the arguments, you would use a loop:

for(var i = arguments.length; i--) {
   var arg = arguments[i];
}

Note that arguments isn't a real array, so if you needed it as an array you would convert it like this:

var args = Array.prototype.slice.call(arguments);

Solution 6 - Javascript

arguments.length. you can use a for loop on it.

(function () {
    for (var a = [], i = arguments.length; i--;) {
        a.push(arguments[i]);
    };
    return a;
})(1, 2, 3, 4, 5, 6, 7, 8)

Solution 7 - Javascript

Much better now for ES6

function Example() {
    return {
        arguments: (...args) =>{
            args.map(a => console.log());
        }
    }
}

var exmpl = new Example();
exmpl.arguments(1, 2, 3, 'a', 'b', 'c');

I hope this helps

Solution 8 - Javascript

Rest parameters in ES6

const example = (...args) => {
  for (arg in args) {
    console.log(arg);
  }
}

Note: you can pass regular parameters in before the rest params

const example = (arg1, ...args) => {
  console.log(arg1);
  for (arg in args) {
    console.log(arg);
  }
}

Solution 9 - Javascript

You can create a function using the spread/rest operator and from there on, you achieved your goal. Please take a look at the chunk below.

const print_names = (...args) => args.forEach(x => console.log(x));

Solution 10 - Javascript

You can use the spread/rest operator to collect your parameters into an array and then the length of the array will be the number of parameters you passed:

function foo(...names) {
    console.log(names);
    return names;
}

console.log(foo(1, 2, 3, 4).length);

Using BabelJS I converted the function to oldschool JS:

"use strict";

function foo() {
  for (var _len = arguments.length, names = new Array(_len), _key = 0; _key < _len; _key++) {
    names[_key] = arguments[_key];
  }

  console.log(names);
  return names;
}

Solution 11 - Javascript

let x = function(){
  return [].slice.call(arguments);
};

console.log(x('a','b','c','d'));

Solution 12 - Javascript

I like to do this:

This will not help if you don't know the number of arguments, but it helps if you don't want to remember the order of them.

/**
 *  @param  params.one        A test parameter
 *  @param  params.two        Another one  
 **/
function test(params) {

    var one = params.one;
    if(typeof(one) == 'undefined') {
        throw new Error('params.one is undefined');
    }

    var two = params.two;
    if(typeof(two) == 'undefined') {
        throw new Error('params.two is undefined');
    }
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionajsieView Question on Stackoverflow
Solution 1 - JavascriptShZView Answer on Stackoverflow
Solution 2 - JavascriptRationalDev likes GoFundMonicaView Answer on Stackoverflow
Solution 3 - Javascriptpublic overrideView Answer on Stackoverflow
Solution 4 - JavascriptGabi PurcaruView Answer on Stackoverflow
Solution 5 - JavascriptJacob RelkinView Answer on Stackoverflow
Solution 6 - Javascriptmeder omuralievView Answer on Stackoverflow
Solution 7 - JavascriptSantiago PosadaView Answer on Stackoverflow
Solution 8 - JavascriptKurtis StreutkerView Answer on Stackoverflow
Solution 9 - JavascriptmabuluView Answer on Stackoverflow
Solution 10 - JavascriptLajos ArpadView Answer on Stackoverflow
Solution 11 - JavascriptSekhar552View Answer on Stackoverflow
Solution 12 - JavascriptColin SullivanView Answer on Stackoverflow