-
Notifications
You must be signed in to change notification settings - Fork 10
Storage.Get
boxgaming edited this page Sep 27, 2023
·
3 revisions
Returns a value from browser storage identified by the storage key.
value$ = Storage.Get (key$ [, storageType])
- The key$ parameter is a unique string that identifies the stored value.
- 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.
Window.localStorage
Window.sessionStorage
Storage.Set
Storage.Clear
Storage.Key
Storage.Length
Storage.Remove