var test=[];test[1]={name:'1',age:1};test[2]={name:'2',age:2};test[4]={name:'3',age:3}; console.log(test) 长度为5的关联数组,现在开始删除. 1.splice方法 test.splice(2,1);console.log(test)// 打印结果如下 数组长度相应改变,但是原来的数组索引也相应改变,splice参数中第一个2,是删除的起始索引(从0算起),在此是数组第二个元素.第二个1,是删…