Storage: clear() method - Web APIs | MDN (original) (raw)

The clear() method of the Storage interface clears all keys stored in a given Storage object.

Syntax

Parameters

None.

Return value

Examples

The following function creates three data entries in local storage, and then deletes them by using clear().

function populateStorage() {
  localStorage.setItem("bgcolor", "red");
  localStorage.setItem("font", "Helvetica");
  localStorage.setItem("image", "miGato.png");

  localStorage.clear();
}

Specifications

Specification
HTML Standard # dom-storage-clear-dev

Browser compatibility

BCD tables only load in the browser

See also