Live Website: https://abishrestha.com.np/automataGoL
- What is Conway's Game of Life?
- Cool trick to swtich 0 and 1
function changeColor() {
const newState = 1 - state;
state = newState;
document.getElementById("colorbtn").innerText = "Change Color : " + color[newState];
}
- Familiarised with canvas, button element, DOM Manipulation and Array in JS
- Automata, States and Transition Table