Is there a max number of arguments JavaScript functions can accept?

Javascript

Javascript Problem Overview


I know that JavaScript functions can accept "any" number of arguments.

function f(){};
f(1,2,3,4 /*...*/);

But I'm wondering if there is actually a limit to how many "any" can be?

E.g., let's say I hand a million arguments to f(). Would that work? Or would the interpreter keel over?

I'm guessing the maximum is either (a) implementation-specific or (b) (2^32)-1, since the arguments object is array-like.

I don't see this mentioned in the language specification, but I might not be connecting some dots.

Javascript Solutions


Solution 1 - Javascript

Although there is nothing specific limiting the theoretical maximum number of arguments in the spec (as thefortheye's answer points out). There are of course practical limits. These limits are entirely implementation dependent and most likely, will also depend exactly on how you're calling the function.


I created this fiddle as an experiment.

function testArgs() {
    console.log(arguments.length);
}

var argLen = 0;
for (var i = 1; i < 32; i++) {
    argLen = (argLen << 1) + 1;
    testArgs.apply(null, new Array(argLen));
}

Here are my results:

  • Chrome 33.0.1750.154 m: The last successful test was 65535 arguments. After that it failed with: > Uncaught RangeError: Maximum call stack size exceeded

  • Firefox 27.0.1: The last successful test was 262143 arguments. After that it failed with: > RangeError: arguments array passed to Function.prototype.apply is too large

  • Internet Explorer 11: The last successful test was 131071 arguments. After that it failed with: > RangeError: SCRIPT28: Out of stack space

  • Opera 12.17: The last successful test was 1048576 arguments. After that it failed with: > Error: Function.prototype.apply: argArray is too large

Of course, there may be other factors at play here and you may have different results.


And here is an alternate fiddle created using eval. Again, you may get different results.

  • Chrome 33.0.1750.154 m: The last successful test was 32767 arguments. After that it failed with: > Uncaught SyntaxError: Too many arguments in function call (only 32766 allowed)

    This one is particularly interesting because Chrome itself seems to be confused about how many arguments are actually allowed.

  • Firefox 27.0.1: The last successful test was 32767 arguments. After that it failed with: > script too large

  • Internet Explorer 11: The last successful test was 32767 arguments. After that it failed with: > RangeError: SCRIPT7: Out of memory

  • Opera 12.17: The last successful test was 4194303 arguments. After that it failed with: > Out of memory; script terminated.

Solution 2 - Javascript

ECMAScript 5.1, part 8.8

> The List type is used to explain the evaluation of argument lists (see 11.2.4) in new expressions, in function calls, and in other algorithms where a simple list of values is needed....These sequences may be of any length.

So there is no limit in the standard. Of course, if your code runs in the real world, not in standards-land, there is obviously some limit (e.g. number of particles in the universe).

There are two ways to pass parameters to a function.

  • "Literally": f(a, b, c)
  • With apply(): f.apply(null, [a, b, c])

This latter way is the more realistic scenario for large argument lists.

Go to this JSFiddle to see the limits for each of these for your current browser.

I tried out a few browsers myself:

           | apply() | literal
 ----------------------------
Chrome 14  | 131155  |  32767
Chrome 35  | 126213  |  65535
Firefox 30 | 500001  |  65535
IE 9       | 254335  |  65533
IE 10      | 253667  |  65533
IE 11      | 252447  |  65533
Opera 22   | 126063  |  65535
Safari 4   | 524215  | 524205
Safari 7   |  65537  | 522159

I saw differences in many of these numbers on different machines, so I believe there are other factors at play besides just the browser (the OS?).


This is a real issue, not some trivia. A real-world example:

The Google Closure Library defined the following function.

goog.crypt.byteArrayToString = function(array) {
  return String.fromCharCode.apply(null, array);
};

This worked only if the length of the string was within the browser limit for the number of arguments that can be passed with Function.prototype.apply.

The function was later patched, making the function significantly more complicated.


FYI, there is an open Webkit issue filed in March 2012 that discusses the argument limit.

Solution 3 - Javascript

According to ECMA Script 5.1 Standard Specification for List,

> The List type is used to explain the evaluation of argument lists (see 11.2.4) in new expressions, in function calls, and in other algorithms where a simple list of values is needed. Values of the List type are simply ordered sequences of values. These sequences may be of any length.

So, the standard doesn't have any limitations on the number of arguments and limited only by the memory.

Solution 4 - Javascript

Computer Stupidities
> from Computer Stupidities

As far as I'm concerned, the limit is "big enough"!

Solution 5 - Javascript

It's purely dependent on how much powerful the client is.

Because the browser will lose its memory, if you are gonna pass millions of arguments.

Each variable holds some memory. So browsers will have no problem allocating each variable some memory, until it itself has no memory to run on.

Solution 6 - Javascript

Just use an map (just an object) as a single parameter. You still get to use parameter names and can have as many arguments as you'd like. It guarantees you a theoretical infinite number of arguments you can pass in, however you obviously still remain bounded by heap space.

let infiniteParameters = (w) => console.table(w);

infiniteParameters({
  name1 : "value1",
  name2 : "value2",
  // ...
});

Solution 7 - Javascript

Here is how I check it.

let args = [];

while(true){
	try{
		(() => {})(...args);
		args.push(0);
	}catch(e){
		console.log(e.message);
		console.log(`Number of arguments: ${args.length}`);
		break;
	}
}

Solution 8 - Javascript

According to MDN's JavaScript Function section, the maximum amount of parameters a function can accept is 255.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions#Defining_functions

param
The name of an argument to be passed to the function. A function can have up to 255 arguments.

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
QuestionGladstoneKeepView Question on Stackoverflow
Solution 1 - Javascriptp.s.w.gView Answer on Stackoverflow
Solution 2 - JavascriptPaul DraperView Answer on Stackoverflow
Solution 3 - JavascriptthefourtheyeView Answer on Stackoverflow
Solution 4 - JavascriptNiet the Dark AbsolView Answer on Stackoverflow
Solution 5 - JavascriptAmit JokiView Answer on Stackoverflow
Solution 6 - JavascriptMark RussellView Answer on Stackoverflow
Solution 7 - JavascriptnikksanView Answer on Stackoverflow
Solution 8 - JavascriptErnesto HegiView Answer on Stackoverflow