About Pi Downloads Documentation Plugins Developer Forum Issues

pi.storage.remove

Summary

Removes the record from browser.

Syntax

object.remove();

Example

 >>> var data = new pi.storage("counter");
 >>> data.isStored();
 true
 >>> data.remove();
 >>> data.isStored();
 false