I have used localStorage["key"] and key being different strings to store my values while developing my app.
Now I don’t even know what all keys I have used.
Is there a way to retrieve all key’s and its values from my file system?
And is there a way to drop the entire localStorage?
localStorage.clear();worked just right for dropping!But the other question of knowing and retrieving all key-value pair still remains.