Hi all. I am
Hadiya Farooq
> Front-end developer
// find my profile on Github:
1
function initializeGame(player) {
2
3
if (player === currentPlayer) {
4
return player;
5
} else {
6
return null;
7
}
8
}
9
10
class Player {
11
constructor(name) {
12
this.name = name;
13
}
14
15
getScore() {
16
return this.score;
17
}
18
}