The localStorage property allows you to store objects in HTML5 that is more secure and can store large amounts of data locally.
It’s essential sometimes having stored JavaScript object in HTML5 localStorage. But objects don’t seem to work? Let’s see.
Basically, if you have a look for Apple, Mozilla and Microsoft documentation, you can find that the functionality seems to be limited for handling the string key/value pairs.
As local storage is per origin so, all pages from one origin can store and access the same data and the storage limit is much more like 5MB. The information is never transferred to the server also.
Before HTML5, we stored application data in cookies. But now we can store data as a local storage also. This is more secure and we can store large amounts of data locally without affecting website performance.
And a workaround can be to stringify your object before storing it and then parse it when you retrieve it.
Have a look at this example:
var obj = { '1': 'John', '2': 'Jane', '3': 'Tim' }; Now, put the object into a storage
localStorage.setItem('obj', JSON.stringify(obj)); Then, retrieve the object from a storage
var resultObj = localStorage.getItem('obj'); console.log('resultObj: ', JSON.parse(resultObj)); Read Also: Make a placeholder for a “select” box
Most of the browsers supports HTML local storage.
When you are looking to apply for a mortgage the one thing that most people…
Once you've memorized basic blackjack strategy, it's time to delve deeper into the game. Advanced…
Yoga is no longer just a physical practice. Yoga is popular as a lifestyle practice.…
Best Crypto Sign-Up Bonuses in India 2026: Ranked & Compared Every exchange claims to have…
One of the world's busiest travel hubs, New York City relies heavily on coach bus…
Whether large scale or small scale, many businesses want to market their services or products…