empty an arrray javascript code example
Example 1: how to make array empty
A.length = 0
Example 2: javascript array clear
var cars = ["mazda","honda","tesla"];
cars = []; // clear/empty the array
A.length = 0
var cars = ["mazda","honda","tesla"];
cars = []; // clear/empty the array