JavaScript arguments 伪数组
Posted liyunlonggg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript arguments 伪数组相关的知识,希望对你有一定的参考价值。
arguments 伪数组
在javascript中什么是伪数组?
伪数组(类数组):
- 不能调用数组方法 比如 push unshift
- 有length
- 只能在函数中调用 (箭头函数没有)
- 是函数内置的,不勇声明
arguments 什么地方用
在不确定函数有多少形参的时候用
伪数组转数组的方式
let arr;
arr = Array.prototype.slice.call(arguments)
arr = [].slice.call(arguments)
arr = Array.from(arguments)
arr = [...arguments]
以上是关于JavaScript arguments 伪数组的主要内容,如果未能解决你的问题,请参考以下文章
javascript中什么是伪数组?如何将伪数组转为标准数组?