Skip to content
#

LocalStorage

LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies—another alternative if the data in question goes beyond key-value pairs is to use the IndexedDB.

localStorage data is specific to the protocol of the document. In particular, for a site loaded over HTTP (e.g., http://example.com), localStorage returns a different object than localStorage for the corresponding site loaded over HTTPS (e.g., https://example.com).

Here are 8,407 public repositories matching this topic...

A simple to-do list that helps you manage all your tasks in one paged website, you can start with an empty list of My Day tasks then you can add your own lists and tasks with specified days. // the application is created with next.js, tailwind css and it uses LocalSorage as a Database

  • Updated Jun 5, 2024
  • JavaScript