how to remove array iof items from and Array code example
Example: javascript array clear
var cars = ["mazda","honda","tesla"];
cars = []; // clear/empty the array
var cars = ["mazda","honda","tesla"];
cars = []; // clear/empty the array