7 Object And Array
1. 首先就是Object可以用作Hash, Map,关联数组
?
2. Object的属性和方法hasOwnProperty()
propertyIsEnumerable()
isPrototypeOf()
?
3. Array的属性和方法首先要注意Array[index]中的index不会做任何trunction这种操作,什么意思呢,看下面的代码
输出的结果是:
arr[1] is 1
arr[1.23] is undefined
arr is 0,1,2,3,,,,,,,10?
其次,要注意Array的length属性是可写的。也就是你可以改变它。看下面的代码:
arr;[1, 2, 3, [4, 5, [6, 7]]]arr.toString();"1,2,3,4,5,6,7"arr.join();"1,2,3,4,5,6,7"?数组全部展开了。