0

Sorry to ask this question. Just for general Knowledge purpose. What is the maximum number of (argument/parameter) can be sent inside Javascript function?

user3556610
  • 151
  • 1
  • 1
  • 6

1 Answers1

0

ECMAScript 5.1

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.

Theoretically there is not a maximun, but your memory is not infinite. so in practice, is limited.

You can read some experiments in this answer

Community
  • 1
  • 1
levi
  • 22,001
  • 7
  • 73
  • 74