i am creating a website that remembers your name and welcomes you back the second time you reload the page. I am storing the data in the localStorage because its better than cookies and its never expires, thank you for your consideration!
var person = prompt("please enter your name","you are...");
var person1 = +localStorage.getItem("person1");
if(person1 == null){
alert(person);
localStorage.setItem("person1");
}
if(person1 != null){
alert("welcome back " + person + "!");
}