I have an array which is being used to store multiple rows. Now on some event I update the value of rows based on Id. eg. if a used makes changes to one of the text box I want to update my array with latest value. This update has to be done at "onblur" event of textbox. If the value is updated I am inserting it into another array called arrActionData which records all the updates.
However, if I do not make any changes and I want to check whether the value of array has changed or not. Is there a way to do so? I want to figure out a way to prevent myself from inserting records in array which do not have update.