I dont know why is not working

Tell us what’s happening:
Describe your issue in detail here.
dog.sayLegs() should be a function.

dog.sayLegs() should return the given string - note that punctuation and spacing matter.

MY CODE:

let dog = {

name: “Spot”,

numLegs: 4,

sayLegs: function(){

return "This dog has " + dog.numLegs + "legs";

}

};

dog.sayLegs();


let dog = {
name: "Spot",
numLegs: 4,
sayLegs: function(){
  return "This dog has " + dog.numLegs + "legs";
  }

};

dog.sayLegs();


  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.62 Safari/537.36

Challenge: Create a Method on an Object

Link to the challenge:

Put that together and you get:

This dog has 4legs

Remember, the expected output is:

This dog has 4 legs.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.