connect-four icon indicating copy to clipboard operation
connect-four copied to clipboard

A Pure JavaScript grid-based game

Results 8 connect-four issues
Sort by recently updated
recently updated
newest added

i think a good addition would be to center it in the screen and making it a bit bigger so its easier to see

Hi Ania, thank you very much for the JS course! In this game though I think that rather than using a fixed array to find winning combinations it would be...

Tried playing this yesterday with my son Noah. But we immediately noticed some hard to fix bugs in this implementation. Wrote a new version of this game from scratch. Hope...

found two arrays that have the wrong numbers

In the `winningArrays`, we have: `[11, 7, 23, 29]` But that should be: `[11, 17, 23, 29]` All the best,

I improved another version for JS code: - adding an event listener to only the grid element, not 49 squares - split functionality to more simplified functions - provide a...