Other than looping through each element in an array and setting each one to null, is there a native function in Java / processing to simply empty an array (or destroy it, to
I was able to do that with the following 2 lines, I had an array called selected_items used to get all selected items on a dataTable
selected_items = null; selected_items = [];