Conway's Game of Life (JavaScript Port)

Conway's Game of Life (JavaScript Port)

The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970.

I've created a basic port of this concept within JavaScript. It creates a random state value for each cell in the grid (dead or alive) and directly starts executing the simulation.

Within the demo, you can also reset and pause the simulation. Try it out!💻