remove Method
Removes a value associated with the provided key from session storage
@param key: string
The specific key under which the value is stored and should be removed
API
remove(key: string): void;
Example
import {sessionStorage} from '@bitfiber/rx';
const ss = sessionStorage();
ss.remove('key');