Building Conway’s Game of Life in Javascript

Conway’s Game of Life has amazed Computer Scientists and Mathematicians for over half a century now. For those who don’t know, the Game of…

September 2, 2021 2 Min Read
Building Conway’s Game of Life in Javascript
Building Conway’s Game of Life in Javascript

Codesphere

From everyone in the Codesphere Team:)

Table of Contents

Conway’s Game of Life has amazed Computer Scientists and Mathematicians for over half a century now. For those who don’t know, the Game of Life is a zero-player game that follows four simple rules and can end in chaotic, beautiful, and mind-blowing outcomes. This simple game can even be used to simulate a Turing machine (you can essentially program using the game).

Today, I’m going to be showing you how you can make this game yourself with only 100 lines of Javascript.

You can get a feel for the game here: https://playgameoflife.com/

What is Conway’s Game of Life?

Conway’s Game of Life starts with a 2d grid, and each cell in the grid being either alive or dead. The grid will then evolve after each iteration based on the following rules:

  1. Any living cell with less than 2 live neighbors dies
  2. Any living cell with 2 or 3 live neighbors continues to be alive
  3. Any dead cell with three live neighbors becomes a live cell
  4. Any live cell with more than 3 live neighbors dies

Following these rules, each cell counts the number of live cells adjacent to it and determines its upcoming status.


Tech We’ll Be Using

To create our Game of Life Simulator, we are going to be using Javascript in conjunction with the following tools:

P5.js

P5.js is an easy-to-use javascript graphics library. It is going to make displaying our cells extremely easy. You can check it out here:

https://p5js.org/

Codesphere

Codesphere is a no-config cloud provider that will allow us to deploy our app seamlessly. We’re going to use it to host our Game of Life simulator. You can learn more here:

https://codesphere.com

The Code

Cool Starting Grids

And there we go! We’ve created Conway’s Game of Life with some pretty rudimentary javascript! Here are some cool creations you can create:

These are just the tip of the iceberg! By adjusting the grid length and survival rules there is literally an infinite number of patterns you can generate.


Hope you enjoyed it!

Happy coding from your good friends at Codesphere, the next-generation cloud provider.

About the Author

Building Conway’s Game of Life in Javascript

Codesphere

From everyone in the Codesphere Team:)

We are building the next generation of Cloud, combining Infrastructure and IDE in one place, enabling a seamless DevEx and eliminating the need for DevOps specialists.

More Posts