storage/remove

Remove an item from storage

Fields

keystring required

This is the value you would like to add to your storage

The storage/remove action removes a stored key-value pair from the app's local storage. Once removed, the key will no longer exist in storage and attempts to retrieve it will return null.

This action supports dot notation for removing nested properties from stored objects.

Tapcart.action("storage/remove", {
  "key": "username"
});