Firefox Tomorrow

web api instance method

Storage: clear() method

View on MDN ↗

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

Syntax

clear()

Parameters

None.

Return value

None (undefined).

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();
}

[!NOTE] For a real-world example, see our Web Storage Demo.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also

Using the Web Storage API