Thanks rnd me,
Im not asking for you to do my homework. As you can see in the code, everything is ready and setup. The game works fine (not great), the code with the coordinates to check for winners is in the DEALER.CLASS.JS part of the code. I changed the original coordinates so it can verify winners and it worked fine. I changed the coordinates because I noticed that the "x" and "0" are not falling to the bottom of the board, instead they are staying on top.
Now my problem is that I cant figure out where the conflict is, in other words why is it not letting the "x" and "0" fall to the bottom of the board.
Can anyone Help ??
code
function Dealer(board) {
var DOWN = [0, -1];
var LEFT_TOP = [1, 1];
var RIGHT_DOWN = [-1, -1];
var LEFT = [-1, 0];
var RIGHT = [1, 0];
var LEFT_DOWN = [1, -1];
var RIGHT_TOP = [-1, 1];