Conway's Game of Life

Generation: 0

Conway's Game of Life is a simple cellular automa created by John Conway in 1970. Beautiful and intricate patterns are created from some very simple rules:
  1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by overcrowding.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
This is a simple implementation of the GOL in JavaScript and HTML5 Canvas.

Made by Daniel Prilik - 2014