js高级回顾

1.1-数组对象api<script> //声明数组 let arr = [10,20,30] /*1.数组的增删改查操作 新增元素到最后面 : arr.push( 元素 ) 新增元素到最前面 : arr.unshif...