📄️ clear()
The clear() method deletes all the items in the specified web storage. It accepts no argument.
📄️ getItem()
The getItem() method retrieves the value of a web storage item. It accepts one required argument.
📄️ key()
The key() method retrieves a web storage item's name. It accepts one required argument.
📄️ length
The length property returns the number of properties in the specified web storage.
📄️ removeItem()
The removeItem() method removes a property from the specified web storage. It accepts one required argument.
📄️ setItem()
setItem() sets its key and value arguments in the specified local or session storage object.