delSession
Delete item from sessionStorage.
Usage
js
import { delSession } from 'js-cool'Signature
typescript
function delSession(key: string): voidParameters
| Parameter | Type | Description |
|---|---|---|
key | string | Key to delete |
Examples
js
setSession('token', 'abc123')
delSession('token')
getSession('token') // nullRelated
- setSession - Set session item
- getSession - Get session item