Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions myScripts.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

//TypeScript is more preferred over Javascript now as it defines the type!
var playerone,playertwo;
var player1color = 'rgb(244, 65, 65)';
var player2color = 'rgb(66, 134, 244)';
Expand Down Expand Up @@ -141,7 +141,7 @@ function horizontalWinCheck() {
}
}
}

//While deployment the console.log statments ought to be removed!

// Check for vertical wins
function verticalWinCheck() {
Expand Down Expand Up @@ -204,4 +204,4 @@ function startTimer() {
clearInterval(timer);
timer = setInterval(updateTimer, 1000);
updateTimer();
}
}