abhn / Game-of-Life

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

Home Page:https://game-of-life.nagekar.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

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

https://game-of-life.nagekar.com/


Languages

Language:JavaScript 69.7%Language:HTML 30.3%