Created
February 6, 2021 16:24
-
-
Save dainiuxt/14242e8ff5e6d183e6e8a843f0985e45 to your computer and use it in GitHub Desktop.
This file contains 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
function Player(name, marker) { | |
this.name = name | |
this.marker = marker | |
this.sayName = function() { | |
console.log(name) | |
} | |
} | |
const player1 = new Player('steve', 'X') | |
const player2 = new Player('also steve', 'O') | |
player1.sayName() // logs 'steve' | |
player2.sayName() // logs 'also steve' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment