You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
localstorage.setItem("key",JSON.stringify({firstName: "Pierre",lastName: "Besson"}));//Save the object in the localStorage.localstorage.getItem("key")// return //In order to have the real objectJSON.parse(localstorage.getItem("key"));//Return {firstName: "Pierre", lastName: "Besson"}