字符串数组对象创建方式函数创建arguments数组
Posted wfl9310
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串数组对象创建方式函数创建arguments数组相关的知识,希望对你有一定的参考价值。
//创建字符串对象两种方式 var str1="hello"; var str2=new String("hello2")
var str1="hello"; console.log(str1.length)//字符串的属性
var arr=[‘a‘,123,{‘name‘:‘we‘},3] var arr2=new Array(‘wer‘)
//函数创建方式1,较好 function f(x,y) { alert(123); return x+y; } console.log(f(1,3))
第二种不合适
<script> function f(name) { console.log("hello"+name) } var obj=new Function(‘name‘,‘console.log("hello"+name)‘) obj(‘jerry‘) </script>
//函数调用多了也是只取前几个 <script> function add(x,y,z) { return x+y+z; } console.log(add(1,2,3,4,5,6)) </script>
<script>//函数有return, function add() {//arguments存储输入的数值,无论多少都会存放在arguments数组内 var sum=0; for(var i=0;i<arguments.length;i++){ sum+=arguments[i]; } return sum; } console.log(add(1,2,3,4,5)) console.log(add(1,2)) </script>
以上是关于字符串数组对象创建方式函数创建arguments数组的主要内容,如果未能解决你的问题,请参考以下文章