//Set the value in a local storage object
localStorage.setItem('name', myName);
//Get the value from storage object
localStorage.getItem('name');
//Delete the value from local storage object
localStorage.removeItem(name);//Delete specifice obeject from local storege
localStorage.clear();//Delete all from local storege
会话存储:它与本地存储日期相同,只是它会在Web用户关闭浏览器窗口时删除所有窗口。
//set the value to a object in session storege
sessionStorage.myNameInSession = "Krishna";