Object Methods


In JavaScript, objects can store not only data but also functions. When a function is inside an object, it is called a method.

Methods allow objects to perform actions related to their data. For example, a user object can have a method to display details, and a product object can have a method to calculate price.

Learning object methods helps students write interactive and real-world JavaScript programs.

Why Object Methods Are Important

  • They keep related logic with related data  
  • They make code more organized
  • They help create real-world models
  • They support clean and reusable code 
  • They are widely used in modern applications  

Methods turn simple objects into powerful tools.

Here, greet is a method of the user object. The word this refers to the current object.

Using this.name allows the method to access the object’s own data.

This example shows how a method can perform a task and return a value.

Object methods are commonly used for calculations and data processing.

This example shows a modern way to define methods inside objects.

By mastering object methods, students gain the ability to build smart, interactive, and professional JavaScript applications.