argument
Posted 郭郭郭牧鑫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了argument相关的知识,希望对你有一定的参考价值。
argument是什么?
arguments 是一个类数组对象。代表传给一个function的参数列表,argument指的是函数调用时的实际参数。
function arg()
console.log(arguments);
arg( "a", 0, foo: "Hello, arguments" );
输出结果
["a", 0, Object]
控制台打印出来的是一个数组,但并不是真正意义上的数组,所以说arguments 是一个类数组的对象,我们称它为伪数组
特别强调:箭头函数是没有arguments这个属性的
在一个函数中可以通过arguments来访问传递给该函数的全部参数,arguments看上去像数组,实际是它是一个类似数组的对象
它也包含了数组的索引和length属性。arguments不提供数组的一些操作方法,例如sort等,但是我们可以把它转换成数组,来
使用数组所提供的一些方法.在这里要使用call了。
function fn()
var arr = Array.prototype.slice.call(arguments);
arr.push(4); // arr -> [1, 2, 3, 4]
fn =[1, 2, 3]
//或者可以用 [] 代替 Array.prototype 节省几个字节。
function fn()
var arr = [].slice.call(arguments);
arr.push(4); // arr -> [1, 2, 3, 4]
fn(1, 2, 3);
拥有四个属性(按照规范来说只有三个了----caller)
- arguments.callee---指向当前执行的函数
- agruments.caller----指向调用当前函数的函数 (已移除)
- arguments.length---指向传递给当前函数的参数数量
- arguments.arguments--- 返回一个新的Array迭代器对象,该对象包含参数中每个索引的值
arguments
对象可以与剩余参数、默认参数和解构赋值参数结合使用
function func(...args)
return args
func(1,2,3) // [1,2,3]
/* --------------------------------------------------------- */
function func(a)
arguments[0] = 99; // 更新了arguments[0] 同样更新了a
console.log(a);
func(10); // 99
"use strict"
func(10); // 10
/* --------------------------------------------------------- */
function func(a)
a = 99; // 更新了a 同样更新了arguments[0]
console.log(arguments[0]);
func(10); // 99
"use strict"
func(10); // 10
/* --------------------------------------------------------- */
function func(a = 55)
arguments[0] = 99; // 更新了arguments[0]不会更新a
console.log(a);
func(10); // 10
/* --------------------------------------------------------- */
function func(a = 55)
a = 99; // 更新了a不会更新arguments[0]
console.log(arguments[0]);
func(10); // 10
//总结:
//不在严格模式下,arguments[0]改变,会使相对应的形参也发生改变,
//修改形参,arguments[0]也会相应被修改
//而在严格模式则不会被修改
以上是关于argument的主要内容,如果未能解决你的问题,请参考以下文章
react项目,或者vue项目。手动隐藏warning。保持控制台的清晰
如果 SQL 查询花费更多时间并且 CONN_MAX_AGE 的剩余年龄更短,会发生啥情况?
django2.1发生Django TypeError: render() got an unexpected keyword argument 'renderer