LocalStorage removeItem

Example removing an item from storage.

Preview

Code

<button onclick="removeItem()">Remove Name</button>

<script>
function removeItem(){
 localStorage.removeItem("name");
 alert("Item removed");
}
</script>

More HTML Web Storage Examples (5)