how to empty array file type in javascript code example
Example: javascript empty array
var colors = ["red","blue","green"];
colors = []; //empty the array
var colors = ["red","blue","green"];
colors = []; //empty the array