このページでは[「P5.js 日本語リファレンス」] (https://qiita.com/bit0101/items/91818244dc26c767a0fe) の clearStorage関数を説明します。
clearStorage()
説明文
storeItem() で保存したすべてのローカルストレージアイテムをクリアします。
構文
clearStorage()
例
function setup() {
let myNum = 10;
let myBool = false;
storeItem('key1', myNum); // key1 に 10 を保存します
storeItem('key2', myBool); // key2 に false を保存します
print(getItem('key1'));
print(getItem('key2'));
clearStorage() ; // クリアします
print(getItem('key1')); // 再度、key1 を取得します -> NULL を表示
print(getItem('key2')); // 再度、key2 を取得します -> NULL を表示
}
著作権
p5.js was created by Lauren McCarthy and is developed by a community of collaborators, with support from the Processing Foundation and NYU ITP. Identity and graphic design by Jerel Johnson.
ライセンス
Creative Commons(CC BY-NC-SA 4.0) に従います。