Created
November 23, 2017 23:09
-
-
Save MarksCode/fcad0d07e9e611a86852247313963a2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (playerTeam == myTeam) { // check if player is on our team | |
playersOnOurTeam.push(playerData); // add player's data to our team array | |
} else { // player is on the other team | |
playersAgainst.push(playerData); // add player's data to our against array | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment