empty number array angular code example
Example 1: javascript empty array
var colors = ["red","blue","green"];
colors = []; //empty the array
Example 2: how to clear array in javascript
A.length = 0
var colors = ["red","blue","green"];
colors = []; //empty the array
A.length = 0