Skip to content
Advertisement

Having a problem with starting a setTimer for a function and stopping it JavaScript

Hello I want to make it so that I can start and stop a function with a keypress and I’ve been having a problem with setting a timer on my function and I don’t know why the addEventListener is giving me errors like this is not a function or window not defined I tried to switch window with global because I’m using node.js but it still doesn’t work

JavaScript

Advertisement

Answer

Here’s a remake of your original code:

  • Use only the "keydown" Event.
  • Set the itv to undefined inside the stop() function
  • Don’t use evt.keyCode. You’re writing code mainly for developers and a future self. Use evt.key instead, or eventually evt.code (if other keys like ShiftKey matter)
  • Use evt.repeat to check whether the user is long-pressing a key

JavaScript
JavaScript

PS: needless to say, the above JavaScript is specifically intended for the browser environment, not NodeJS.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement