reading-notes

Todd Wolden

View on GitHub

Course 201 Class Thirteen “Local Storage”

Questions

Because HTTP on the web is stateless and doesn’t store data it resets. Local storgae alllows you to store data in the browser and it does not expire.

Never store sensitive information in local storage. So no passwords or personal data.

You can only store string data in local storgae and work around for that is using the native JSON.stringfy() and JSON.parse

Resources

Local Storage

Return to the Table of Contents

Table of Contents