reading-notes

Reading Notes Class 13

Why is this important?

Local Storage and How To Use It On Websites

  1. A dev. would use local storage for a web app. because the state of the application won’t be reset everytime the user closes down and restarts. Instead it will maintain it’s last ‘spot’.

  2. Any personal sensitive information?

  3. Local storage can store strings. You can use JSON.stringify() methods to convert the data type to a string. JSON.parse() To convert it back to object.

Things I want to know more about

In Class Lecture