localStorage popup

by satantx

JavaScript

if (localStorage.getItem('hello') === null) {
   alert('hello world');
   localStorage.setItem('hello', 1);
}