Conway's Game of Life was created by John Conway in 1970. It's a cellular automaton defined by a set of very simple rules from which chaotic and complex structures can emerge. More details about Conway's Game of Life can be found on Wikipedia .
The rules can be stated simply as the following, where a neighbor is defined as an adjacent cell in vertical, horizontal, and diagonal directions.
I wrote this implementation of Conway's Game Of Life just for fun. My goal was to write it in pure HTML and vanilla Javascript and to keep it minimal. Bugs can be reported by opening an issue.
The source code can be found on GitHub.