js中數組刪除 splice和delete的區別,以及delete的使用

var test=[]; test[1]={name:'1',age:1}; test[2]={name:'2',age:2}; test[4]={name:'3',age:3};html console.log(test)數組     長度爲5的關聯數組,如今開始刪除。post 1.splice方法ui test.splice(2,1); console.log(test)// 打印結果以下th
相關文章
相關標籤/搜索