clear array javas code example
Example 1: clear array java
Arrays.fill(myArray, null);
Example 2: javascript empty array
var colors = ["red","blue","green"];
colors = []; //empty the array
Arrays.fill(myArray, null);
var colors = ["red","blue","green"];
colors = []; //empty the array