JavaScript-数组方法
//push and pop var testArray = []; for(var i = 10;i>=0;i++){ testArray.push(i) } console.log(testArray); testArray.reverse(); console.log(testArray) for(var i=10;i>=0;i++){ testArray.pop(); } testArray = new(10); testArray.length; //slice and splice testArray = new Array(1,2,3,4,5); console.log(testArray); var indexOf = testArray.indexOf(5); console.log('indexOf 5 is ' + indexOf); indexOf= testArray.lastIndexOf(3); console.log('lastIndexOf 3 is ' + indexOf); var slicedArray = testArray.slice(1,2); console.log('sliced array: ' + slicedArray ); console.log(testArray); testArray.splice(0,4); console.log('after splice: ' + testArray);
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步