Skip to content
Advertisement

Connect Four Game Randomly Not Placing First Puck For Each Column

My problem is that I have been testing placement for the first puck on each position.

But when I go in a row to the left the last three columns don’t place anything

Meaning they have children, even though I don’t really think they do.

My code:

JavaScript
JavaScript
JavaScript

Advertisement

Answer

I see your problem, in your functions for placeColumnFive(), placeColumnSix(), and placeColumnSeven(), they all are comparing to column 4, when they should be comparing to column 5, 6, and 7 respectively.. All three functions have: if(rowSixFour.hasChildNodes()) .. notice the rowSixFour.hasChildNodes in all three functions.. They should be rowSixFive.hasChildNodes, rowSixSix.hasChildNodes, and rowSixSeven.hasChildNodes.

In other words: Change your placeColumnFive(), placeColumnSix(), and placeColumnSeven() functions to this:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement