Skip to content

avanvik/game-of-life

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Conway's Game of Life implementation with JavaScript and canvas

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published