-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappday17.js
27 lines (21 loc) · 851 Bytes
/
appday17.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// const form = document.querySelector('form');
// const input = document.querySelector('.input');
// const heading = document.querySelector('#task-heading');
// // form.value = '';
// // form.addEventListener('submit', runEvent);
// // input.addEventListener('keydown', runEvent);
// // input.addEventListener('keyup', runEvent);
// // input.addEventListener('keypress', runEvent);
// // input.addEventListener('focus', runEvent);
// // input.addEventListener('blur', runEvent);
// // input.addEventListener('cut', runEvent);
// // input.addEventListener('paste', runEvent);
// function runEvent(e) {
// console.log(`${e.type}`);
// heading.innerHTML = input.value;
// e.preventDefault();
// }
localStorage.setItem('name', 'Anush');
localStorage.setItem('age', '21');
localStorage.clear();
console.log(localStorage.getItem('name'));