No errros but code not running

<!DOCTYPE html>
<html lang="en">
<head>
    
    <title>Conway's Game of Life</title>

    <canvas id="conway" width="1280" height="720"></canvas>

</head>

<body>

    <style>

        .conway {
            margin: 0px;
            padding: 0px;
        }


    </style>

    <script>

conway = document.getElementById("conway").getContext("2d")
//document.getElementById("conway").width = window.innerWidth
//document.getElementById("conway").width = window.innerHeight
width = document.getElementById("conway").width
height = document.getElementById("conway").height
size = 5

draw = (x,y,c,s) => {
    conway.fillStyle = c
    conway.fillRect(x,y,c,s)
}

grid = []
tmpgrid = []

cellValue = (x,y) => {
    try {
        return grid[x][y]
    }catch{
        return 0;
    
    }

}

countNeighbours = (x,y) => {
    count = 0
    if(cellValue(x-1,y)) count++ 
    if(cellValue(x+1,y)) count++ 
    if(cellValue(x,1-y)) count++ 
    if(cellValue(x-1,y-1)) count++ 
    if(cellValue(x+1,y-1)) count++ 
    if(cellValue(x+1,y+1)) count++ 

    return count

}

updateCell = (x,y) => {
    neighbours = countNeighbours (x,y)
    if(neighbours > 4 || neighbours < 3) return 0
    if(grid[x][y] == 0 && neighbours ==3) return 1
    return grid[x][y]
}

update = () => {
    conway.clearRect(0,0,width,height)
    draw(0,0,"black",width)
    for(let x = 0; x<width/size; x++){
        for(let y=0; y<height/size; y++){
            tmpgrid[x][y]=updateCell(x,y)
        }
    }
}
    grid=tmpgrid
    var cnt =0 
    for(let x=0; x<width/size; x++){
        for(let y=0; y<width/size; y++){
            if(grid[x][y]){
                draw(x*size,y*size,"red",size)
                cnt+=1

            }
    }
    if(((width/size)*(height/size))/cnt>96)init()
    setTimeout(() => {requestAnimationFrame(update)},40);
}

initArray = (w,h) => {
    arr = []
    for(let x=0; x<w; x++){
        arr[x]=[];
        for(let y=0; y<h; y++){
            arr[x][y]= 0;
        }
    }
    return arr
}


//skift navn hvis det virker
init = () => {
    grid = initArray(width/size, height/size)
    tmpgrid = initArray(width/size, height/size)
    for (let x = 0; x < width/size; x++) {
      for (let y = 0; y < height/size; y++) {
        if(Math.random()>0.5)grid[x][y]=1;
        }
      }

    }

initializeBoard()

    </script>
</body>
</html>

Hello can anybody tell me why my code is not update when opening in browser?

its unusual to have the canvas tag inside the head
and to have the style outside the head

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.