sametaylak / ConwaysGameOfLife

Conway's Game Of Life Implementation with Javascript

Home Page:https://sametaylak.github.io/ConwaysGameOfLife/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ConwaysGameOfLife

GAME RULES

  • Any live cell with fewer than two live neighbours dies (referred to as underpopulation or exposure[1]).
  • Any live cell with more than three live neighbours dies (referred to as overpopulation or overcrowding).
  • Any live cell with two or three live neighbours lives, unchanged, to the next generation.
  • Any dead cell with exactly three live neighbours will come to life.

LINK: http://www.conwaylife.com/wiki/Conway%27s_Game_of_Life

About

Conway's Game Of Life Implementation with Javascript

https://sametaylak.github.io/ConwaysGameOfLife/


Languages

Language:JavaScript 88.5%Language:HTML 11.5%