/Game-of-Life

Conway's game of life implementation in vanilla JS with Canvas API

Primary LanguageJavaScript

Casual implementation of Conway's Game of Life in Javascript

Made with the Canvas API (MDN)

https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life

Rules

  • Any live cell with fewer than two live neighbours dies, as if by underpopulation.
  • Any live cell with two or three live neighbours lives on to the next generation.
  • Any live cell with more than three live neighbours dies, as if by overpopulation.
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Play

Go to game-of-life.nagekar.com