Skip to content

Instantly share code, notes, and snippets.

@sag1v
Created November 25, 2019 14:27
Show Gist options
  • Save sag1v/1422d66dbda06657095e2e3da65ea0c1 to your computer and use it in GitHub Desktop.
Save sag1v/1422d66dbda06657095e2e3da65ea0c1 to your computer and use it in GitHub Desktop.
Markdium-JavaScript - The prototype chain in depth
function createPlayer(userName, score) {
const newPlayer = {
userName,
score,
setScore(newScore) {
newPlayer.score = newScore;
}
}
return newPlayer;
}
const player1 = createPlayer('sag1v', 700);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment