Hello All,
I would like to know the most efficient way of emptying an associative array without causing any memory leak (the values are js objects)
Just to be sure, I have tried iterating through the elements of the array, calling 'delete' operation for each element object, so that all of the element objects will become candidates for garbage collection. Finally, I reset the assoc array using:
somearray = {};
Is it necessary to call the 'delete' operation for each of the element? Or does resetting the variable value suffice so that all elements will be garbage collected?
Thanks!