Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNick Huemmer
Front End Web Development Techdegree Graduate 26,840 PointsWhat is the `game` prepended onto the `startGame` in the `addEventListener` doing here?
Is it used to initiate startGame
via a newGame()
object and the Game
class?
Is this syntax similar to the use of this
?
1 Answer
Peter Vann
36,427 PointsHi Nick!
game is an instance of the game class (an instantiated object, in other words) as declared here:
const game = new Game();
Therefore, to call and use the startGame method, you have reference that instantiated game object.
Like this
game.startGame();
More info:
https://www.w3schools.com/js/js_classes.asp
I hope that helps.
Stay safe and happy coding!
Nick Huemmer
Front End Web Development Techdegree Graduate 26,840 PointsNick Huemmer
Front End Web Development Techdegree Graduate 26,840 PointsPerfect, that's what I suspected. Thanks Peter Vann !