How to save arrays and objects to localStorage using JavaScript?
Originally posted here!
The localStorage API in browsers only supports adding information in a key:pair format and the key and the pair should be of type string thus native objects or arrays cannot be stored in the localStorage.
To save arrays or ob...
melvingeorge-me.hashnode.dev4 min read