I know that the localStorage of browsers stores data in key-value format, and that I can retrieve Json objects saved there through the key. Now what I need to do is recover all the records whose key starts with "Deposit". This is because I want to create a sequence generator so that each deposit object key has added a number to it.
For example: Depósito01 {... Deposit02 {... Once I retrieved all the records, I would extract these two final characters to find out which last deposit was entered, and +1 the next deposit key name ...
I also do not know how to do this, but I'll try. What I first need is to retrieve objects by the name of their keys ...