mikeneko

Data Class

# データのセット

Data.set("value01", { name: "your name", age: 25 });

# データの取得

const value01 = Data.get("value01");

# データの削除

Data.remove("value01");

# データ(リスト)の追記

Data.push("value01", { name: "your name", age: 25 });

# データ(リスト)の件数取得

const length = Data.getLength("value01");

# データ(リスト)のpop

const get = Data.pop("value01");