This is a simple game of life simulation in P5.js. There are four simple rules involved: If a cell have less than two alive neighbours, it will die. If it has three neighbours alive it will stay alive and if it has more than three alive neighbours it will die because of the Overpopulation.
I visualized the number of alive cells and visualize the values with a bar graph to see where and where equilibrium happens and how the system fluctuates during the simulation.