arguments测试题 2019-03-26 本文已影响0人 adtk function Fn(a) { a = 13; arguments[0] = 14; console.log(a)//14 } Fn(1)