javascript delete complete array code example
Example 1: javascript empty array
var colors = ["red","blue","green"];
colors = []; //empty the array
Example 2: js delete all array items
A.length = 0
var colors = ["red","blue","green"];
colors = []; //empty the array
A.length = 0