1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00
2 Storage.Set
boxgaming edited this page 2023-09-27 15:08:51 -05:00

Sets value in browser storage identified by the storage key.

Syntax

Storage.Set key$, value$ [, storageType]

Parameters

  • The key$ parameter is a unique string that identifies the stored value.
  • The value$ parameter specifies the value which will be persisted in browser storage.
  • The optional storageType parameter indicates the type of storage. Default is LOCAL if not specified.
    • LOCAL - Local browser storage. Values stored at this level will be persisted in the browser's local storage between sessions.
    • SESSION - Session browser storage. Values stored at this level will only be persisted for the duration of the page session.

See Also

Window.localStorage
Window.sessionStorage
Storage.Get Storage.Clear Storage.Key Storage.Length Storage.Remove