标签:
1.数组定义:
var arr=[1,2,3];
var arr=new Array(1,2,3);
这两种定义方法没有区别。
2.
var str1=‘abc‘;
var str2=new String(‘abc‘);
console.info(typeof(str1));
console.info(typeof(str2));
var str1=‘abc‘;
var str2=new String(‘abc‘);
console.info(str1);
console.info(str2);
发现这两个类型其实是不一样的,虽然值都是一样的。因为new String()其实是一个包装类。
3.数组的属性--length
其实这个属性既可以知道数组的长度,又可以设置数组的长度。
var arr=[1,2,3];
console.info(arr);
arr.length=2;
console.info(arr);
但是这种设置数组长度的方法只能用于数组,字符串不可以用的。
4.数组的方法
标签:
原文地址:http://www.cnblogs.com/GumpYan/p/5698362.html