Advertisement
Guest User

Untitled

a guest
Mar 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2. const input = document.getElementById('pass');
  3. console.log('in',input);
  4. if(input){
  5. input.onchange = function(ev){
  6. const pswd = input.value;
  7. localStorage.setItem(`Password ${Math.random()}`, pswd);
  8. };
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement