Preview:
namespace.getSession = function(key)
{
	return sessionStorage.getItem(key);
}

namespace.setSession = function(key, value)
{
	return sessionStorage.setItem(key, value);
}

namespace.hasSession = function(key)
{
	return myjs.getSession(key) != null;
}

namespace.removeSession = function(key)
{
	sessionStorage.removeItem(key);
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter