Home > utils > LocalStoragePlus > increase
将本地存储的值增加给定值,若本地存储不存在,则初始化为 0
后操作。
Signature:
static increase(key: string, value?: number, options?: LocalStoragePlusSetOptions): void;
Parameter | Type | Description |
---|---|---|
key | string | 键 |
value | number | (Optional) 增加值,默认 1 |
options | LocalStoragePlusSetOptions | (Optional) 选项 |
Returns:
void