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

181
Vistas
For loop does not appear to be executing with the slightest sign, does anyone have any solutions?

Strangely the for loop doesn't appear to be called. The alert will say 1 but 2 will not show. There aren't any errors in the console, and online code checkers (Specifically JShint.com) say nothing is wrong at all.

window.onLoad = function() {
    var l = 1;
    const S = "Spawn";
    const N = "Next";
    const K = "Kill";
    const LEVEL = [
        [
            [5, 5],
            [1, 1, 1, 1, 1],
            [1, 0, 0, 0, 1],
            [1, S, K, N, 1],
            [1, 0, 0, 0, 1],
            [1, 1, 1, 1, 1]
        ]
    ]
    const PSIZE = 54;
    var SCR = document.getElementById("SCR");
    const context = SCR.getContext("2d");
    drawMap();
}

function drawMap() {
    let w = LEVEL[l - 1][0][0];
    let h = LEVEL[l - 1][0][1];
    alert("1")
    for(let lx = 0; lx == w - 1; lx += 1) {
        for(let ly = 1; ly == h; ly += 1) {
            let tile = LEVEL[l - 1][ly][lx];
            switch(tile) {
                case 1:
                    context.fillColor = "grey";
                    break;
                case 0:
                    context.fillColor = "white";
                    break;
                default:
                    context.fillColor = "red";
                    break;
                    
            }
            alert(2)
            context.fillRect(((lx + 1) * PSIZE), ((ly + 1) * PSIZE), PSIZE, PSIZE);
        }
    }
}

about 4 years ago · Juan Pablo Isaza
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