2022年1月7日
摘要: 1.在数组尾端添加数据 var arr1 = [1, 2, 3, 4, 5] console.log(arr1.push(6), '添加数组的长度') console.log(arr1, '返回添加后的整个数组') 2.从尾端提取元素 var arr2 = [1, 2, 3, 4] console. 阅读全文
posted @ 2022-01-07 14:41 空*幻 阅读(14) 评论(0) 推荐(0) 编辑