Skip to content

delSession

Delete item from sessionStorage.

Usage

js
import { delSession } from 'js-cool'

Signature

typescript
function delSession(key: string): void

Parameters

ParameterTypeDescription
keystringKey to delete

Examples

js
setSession('token', 'abc123')
delSession('token')
getSession('token') // null

Released under the MIT License.