无参调用方法

function max(){
  console.log(arguments);
}
max(1,2,"Hello");  

输出结果:


结果.png

没有传入参数,也可以调用。

function max1(){
  var maxValue = arguments[0];
  for(var i=1;i

你可能感兴趣的:(无参调用方法)