ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] >[success] # push() ~~~ '向数组尾部添加一个或多个元素,并返回添加新元素后的数组长度',注意: 该方法会改变原数组。 ~~~ ~~~ let arr = [1, 2, 3] // [1, 2, 3] let b = arr.push(4) // 4 表示当前数组长度 console.log(arr) // [1, 2, 3, 4] ~~~