Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var x = undefined;
  2.  
  3. document.addEventListener(
  4. 'input',
  5. function(e) {
  6. if (e.target.value === 'easy') {
  7. x = 0
  8. } else if (e.target.value === 'medium') {
  9. x = 1;
  10. } else if (e.target.value === 'hard') {
  11. x = 2;
  12. }
  13. },
  14. false
  15. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement