1、What
arguments 是一個類似數(shù)組的對象截碴,對應于傳遞給函數(shù)的參數(shù)梳侨。
2、How
⑴語法
arguments
描述:arguments對象是所有函數(shù)中可用的局部變量日丹∽卟福可用arguments對象在函數(shù)中引用函數(shù)的參數(shù)。
arguments不是array哲虾,它類似于數(shù)組丙躏,但除了長度外沒有其他數(shù)組屬性。
可被轉(zhuǎn)為數(shù)組: let args = Array.prototype.slice.call(arguments);
⑵實例
http://www.reibang.com/writer#/notebooks/8811173/notes/10592424
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Functions/arguments