JavaScript Array(数组)清空可采用三种方式:
假设有数组 :
var a = [1,2,3];
a.length=0;
a.splice(0,a.length);
a = [];
该方法可能会导致内存泄漏,最好能显式删除对象。