My local storage name is: gkmytasks
if (localStorage.gkmytasks) { }
// or
if (localStorage.getItem("gkmytasks") === null) { }
// or
if("gkmytasks" in localStorage) { }
// or
if (typeof localStorage["gkmytasks"] === "undefined"){
// Save
localStorage.setItem("gkmytasks", "{Task:'Learn js'}");
// or
localStorage.gkmytasks = "{Task:'Learn js'}";
// Load
var lastname = localStorage.getItem("gkmytasks");
// or
var lastname = localStorage.gkmytasks;
// Delete (call from the same domain when saved
localStorage.removeItem("gkmytasks");