My application has a large array of objects, which I stringify and save them to the disk. Unfortunately, when the objects in the array are manipulated, and sometimes replac
There is Array.sort method which can be helpful for you. For example:
Array.sort
yourBigArray.sort(function(a,b){ //custom sorting mechanism });