Methods are nothing but functions that belong to objects and perform actions on them.

Great work! We define a method by assigning a function expression to a property and invoke it just like a regular function.

Psst: this points to the particular object that the speak() method belongs to. It helps us distinguish between properties and parameters.

Is that really how we invoke or declare these methods?