grodtron / javascript-game-of-life

Conway's Game of Life in Javascript

Home Page:http://bigbangtechnology.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rules:

1. Life: 

An empty tile with exactly three tiles surrounding it will become alive.

2. Death by Isolation: 

One or zero living squares surrounding a tile will cause it to die.

3. Death by Suffocation:

More than three living squares surrounding a tile will cause it to die.

4. Survival:

Two or three living squares surrounding a tile will cause it to survive.

About

Conway's Game of Life in Javascript

http://bigbangtechnology.com

License:MIT License