首页 > 代码库 > 08-为数组和arguments
08-为数组和arguments
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script> // var arr = []; // arr.push(1); // console.log(arr); fn(1,2); fn(1,2,3); fn(1,2,3,4,5); function fn(a,b){ //只在函数中使用,实参的数组。 // arguments[0] = 0; // console.log(arguments); //伪数组:不能修改长短的数组。(可以修改元素,但是不能变长变短) // arguments.push(1); // console.log(arguments instanceof Array); // //形参个数 // console.log(fn.length); // //实参个数 // console.log(arguments.length); //arguments.callee整个函数。函数名。 // console.log(arguments.callee); } </script> </body> </html>
08-为数组和arguments
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。