Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

95
Vistas
Does javascript switchs runs continuously

i was wondering if switches runs continuously or does not need of setIntervals to run (forever). i'm making a game where in a level value changes and the switch will change all entities position based on the level;

let LEVEL = 0;

switch (LEVEL) {
    case 1: 
    player.x = 64;
    player.y = 64;
    enemy.x = 32;
    enemy.y = 32;
    break;
    case 2: 
    player.x = 0;
    player.y = 64;
    enemy.x = 72;
    enemy.y = 56;
    break;
}
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

No. A switch is like every other statement in JavaScript: It only runs when it's reached in the step-by-step execution of the code. Your example would run exactly once, for instance. To run more often would require that you put it in a loop (but then nothing else can run except that loop) or, as you said, call a function that contains the switch from a timer.

i'm making a game where in a level value changes and the switch will change all entities position based on the level

Put the switch in a function that you call when you change the level.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda