Conway’s Game of Life is a beautiful example of how complex behavior can emerge from a few very simple rules. But while it uses biological terminology such as “cells”, “alive” and ...
This is a pure JavaScript/HTML/CSS implementation of Conway's Game of Life. This implementation does not use any external libraries, and also does not use a canvas, but rather an HTML table element.
The Game of Life is a cellular automaton created by John H. Conway in 1970. The game is a zero-player game in which an initially configured 2D grid of cells evolves according to the Game of Life ...