JS Supprimer tous les éléments de la table
A.splice(0,A.length)
Modern Mouse
A.splice(0,A.length)
A = [];
var list = [1, 2, 3, 4];
function empty() {
//empty your array
list.length = 0;
}
empty();