deno.com
method Storage.setItem
#Storage.setItem(
key: string,
value: string,
): void

Sets the value of the pair identified by key to value, creating a new key/value pair if none existed for key previously.

Throws a "QuotaExceededError" DOMException exception if the new value couldn't be set. (Setting could fail if, e.g., the user has disabled storage for the site, or if the quota has been exceeded.)

Parameters #

#key: string
#value: string

Return Type #

void