过程记录

了解arguments

特性:arguments对象不能显式创建,arguments对象只有函数开始时才可用。函数的 arguments 对象并不是一个数组,访问单个参数的方式与访问数组元素的方式相同。索引 n 实际上是 arguments 对象的 0…n** 属性的其中一个参数。

概念学习遇到的问题

1.arguments在使用的时候和Arrays有什么区别。
2.在使用arguments的时候通用的属性有哪些。
3.函数参数的传递方式,arguments是通过什么形式存储的。

arguments学习博客地址

http://www.jianshu.com/writer#/notebooks/6891940/notes/6368488

练习代码地址

https://jsbin.excellence-girls.org/foj/edit?js,console

你可能感兴趣的:(过程记录)