Hi all,
I want help from all you wonderful guys. I want to know how can we free memory occupied by an Array. That means all the elements associated with this array should be deleted.
let say:
var bigArray = ["313123", "123123", "sadasd",.........................];
So which will be the best and assured way :
1)
delete bigArray;
OR
2)
bigArray = [];
OR
3) any other ...
Thanks,