arguments with parameter
Posted ax=null
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arguments with parameter相关的知识,希望对你有一定的参考价值。
var f =function(x) { console.log(x); console.log(arguments[0]) console.log(‘-------------before delete-------------‘) x = 3; // arguments[0] = 3; // delete arguments[0]; delete x; console.log(x); console.log(arguments[0]) } f(2);
以上是关于arguments with parameter的主要内容,如果未能解决你的问题,请参考以下文章
英语parameter和argument作为参数的意思区别是啥?