- Why would a developer use local storage for a web application?
the state won't be reset every time you open an application
- What Information should not be stored in local storage?
objects that have not been converted to strings
- Local storage can store what type of data? How would you convert it to
that type before storing? strings. use JSON.stringify() and JSON.parse() methods to convert.