scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Objects with Methods and 'this'
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Objects with Methods and 'this'
AboutCommentsNotes
Objects with Methods and 'this'
Expand for more info
index.js
run
preview
console
const gamer = {
name: 'Dave',
score: 0,
incrementScore: function(){
gamer.score++
}
}
Console
/index.html
-5:14