1.length属性可写 a=[2,4,5,6,7,90]; //a.length->6 a.length=8; //a=[2, 4, 5, 6, 7, 90, undefined , undefined] 2.length末尾自增 a[a.length]=108; a[a.length]=109; //a=[2, 4, 5, 6, 7, 90, undefined ,undefined , 108, 109] ---[2014-08-05]---
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。