arguments

179 阅读1分钟

fn1(1,2,3)  //  实参
function fn1(a,b,c){}  // 形参function fn1(){   
    alert (arguments)=>[1,2.3]=>实参的集合
}