博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arguments的类型是Array吗?
阅读量:5095 次
发布时间:2019-06-13

本文共 457 字,大约阅读时间需要 1 分钟。

  针对JavaScript里的arguments对象有如下问题

1.是Array类型的吗?它有哪些属性?

 

// Best practices: it is best not to use argumentsfunction test(){	console.log( arguments instanceof Array);//return false arguments is not a instance of Array	console.log([1,2] instanceof Array);// return true	console.log( arguments.length); // ok}test(); console.log({}.length); //undefined

 结论: arguments是一个特别的Object, 它带了一个length属性

转载于:https://www.cnblogs.com/buhaiqing/archive/2013/01/15/2860797.html

你可能感兴趣的文章
map基本用法
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>
Aizu - 1378 Secret of Chocolate Poles (DP)
查看>>
csv HTTP简单表服务器
查看>>
OO设计的接口分隔原则
查看>>
数据库连接字符串大全 (转载)
查看>>
java类加载和对象初始化
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Screening technology proved cost effective deal
查看>>
spring boot配置跨域
查看>>
BZOJ 1996 合唱队(DP)
查看>>
安卓学习资料推荐-25
查看>>
Mysql数据库备份和还原常用的命令
查看>>
经典入门_排序
查看>>
Redis Cluster高可用集群在线迁移操作记录【转】
查看>>
二、spring中装配bean
查看>>
VIM工具
查看>>