Optional
abilityOptional
callStatic
localSet a local storage item identified by the given key + value, creating a new key/value pair if none existed for key previously.
the key that specifies the item.
the value of the item.
new Set instance for local storage.
Set.localStorageItem('some key', 'some value');
Static
sessionSet a session storage item identified by the given key + value, creating a new key/value pair if none existed for key previously.
the key that specifies the item.
the value of the item.
new Set instance for session storage
Set.sessionStorageItem('some key', 'some value');
Generated using TypeDoc
Set either Session Storage Items or Local Storage Items on the Browser.