hwo to clear array javascript code example
Example 1: javascript array clear
var cars = ["mazda","honda","tesla"];
cars = []; // clear/empty the array
Example 2: javascript clear an array
let arr = [3.14, 7];
arr = [];//make sure there is no other reference