Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 530 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 530 Bytes

Conway's Game of Life

Conway's Game of Life implementation with JavaScript and canvas. The idea is to demonstrate how seemingly complex behaviours can arise from a few simple rules:

  1. Any live cell with fewer than two live neighbors dies, as if by underpopulation.
  2. Any live cell with two or three live neighbors lives on to the next generation.
  3. Any live cell with more than three live neighbors dies, as if by overpopulation.
  4. Any dead cell with exactly three live neighbors becomes a live cell, as if by reproduction.