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 trial

JavaScript Object-Oriented JavaScript Object Basics Creating Object Literals

Keytron Brown
Keytron Brown
15,828 Points

empty method?

This challenge asks me to add an empty method called play() and im confused as to how to do that.

object.js
const player1 = {
  name: 'Kirby',
  color: 'pink',
  isTurn: true

};

Methods are functions stored as object properties.

for example

const player1 = {
  name: 'Kirby',
  color: 'pink',
  isTurn: true
  play: () => {

  }
};

play is now empty method (the function inside is empty, then it should give you tasks to do inside that function)

1 Answer

Steven Parker
Steven Parker
229,732 Points

An "empty method" is just a method definition that has nothing in the body (between the braces).