文件名称:JavaScript中清空数组的三种方式
文件大小:34KB
文件格式:PDF
更新时间:2024-02-09 13:02:16
c ip pt
方式1,splice var ary = [1,2,3,4]; ary.splice(0,ary.length); console.log(ary); // 输出 [],空数组,即被清空了 方式2,length赋值为0 这种方式很有意思,其它语言如Java,其数组的length是只读的,不能被赋值。如 int[] ary = {1,2,3,4}; ary.length = 0; Java中会报错,编译通不过。 而JS中则可以,且将数组清空了,如 var ary = [1,2,3,4]; ary.length = 0; console.log(ary); // 输出 [],空数组,即