JS life
##Game of life developed in JavaScript
####Rules: If n(x) <= 1, then x dies or stays dead (from under population). If n(x) > 3, then x dies or stays dead (from over population). if n(x) = 3, then x is born or stays alive. if n(x) = 2, then x maintains status.
You can access the running code here: http://machadolucas.github.io/jslife/