Skip to content

Latest commit

 

History

History
executable file
·
22 lines (16 loc) · 722 Bytes

shuzu.md

File metadata and controls

executable file
·
22 lines (16 loc) · 722 Bytes

数组

?> var arr = [......]; 其中,arr 就是一个数组

访问数组属性

arr. 属性

数组方法

.push()方法 往数组最后一位添加成员!
.unshift()    往数组第一位添加成员!
.pop()     将数组最后一位成员弹出!
.shift ()   将数组第一位成员弹出!
.join()  将数组转换成字符串!
.split() 将字符串重新生成数组!括号里面写分隔符(自定义的);看字符串 
.reverse()  将数组成员倒序排列
.concat  ()将两个数组进行合并!
.splice(1,2,3,4)将数组中从下标为1的成员开始删除两个值 并在删除的位置添加3和4