fjhansen / Game-Of-Life-JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Conway's Game of Life Rules

  1. Any live cell with fewer than two live neighbors dies(death of lonelyness)

  2. Any live cell with more than three live neighbors dies (overpopulation)

  3. Any live cell with two or three live neighbors lives and moves on to the next generation

  4. Any dead cell with exactly three live neighbors will come to life(reproduction).

About


Languages

Language:JavaScript 87.1%Language:HTML 8.1%Language:CSS 4.8%