简单教程
提交运行
代码编辑器:
<p> arguments.length 属性返回函数接收到参数的个数</p> <script> function myFunction(a, b) { return arguments.length; } document.write(myFunction(4, 3)); </script>
运行结果: