JavaScript variable number of arguments to function

后端 未结 11 648
太阳男子
太阳男子 2020-11-22 02:14

Is there a way to allow \"unlimited\" vars for a function in JavaScript?

Example:

load(var1, var2, var3, var4, var5, etc...)
load(var1)
11条回答
  •  不知归路
    2020-11-22 02:54

    Use the arguments object when inside the function to have access to all arguments passed in.

提交回复
热议问题