Skip to content
#

local-storage

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 50 public repositories matching this topic...

The Availability Scheduler is a web application designed to help friends or small teams keep track of each other's availability throughout the week. This tool is tailored to our university schedule, running from Tuesday to Saturday, but can be customized to suit any workweek.

  • Updated Aug 15, 2024
  • HTML