Hi, the title is strange, but the situation is as follows. I have an application in which I store a little over 20 variables. I wondered how it was better to do it. I tested two options:
I create a list of data in one variable and each time I call information from the list.
I save all the data in the local storage and then call them from there.
Both methods work equally fast. I am currently opting for option 1 because it requires fewer blocks.
In your opinion, which method is correct and which do you prefer?
I strongly suggest this method. I have a big ass app with a ton of lists. Some lists have 50 slots… that takes a lot of time to deal with that. An object with key:value pairs is the way to go