xxxxxxxxxx
var list = [1, 2, 3, 4];
function empty() {
//empty your array
list.length = 0;
}
empty();
// or use splice() method.
list.splice(0);
xxxxxxxxxx
var list = [1, 2, 3, 4];
function empty() {
//empty your array
list.length = 0;
}
empty();
xxxxxxxxxx
let list = [1, 2, 3, 4];
function empty() {
//empty your array
list.length = 0;
}
empty();