- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Object Methods
- Object methods are functions that are defined as properties within an object.
- They are called on the object and can access the object's properties using the this keyword.
Syntax:
const objectName = {
property1: value1,
property2: value2,
methodName: function(parameter1, parameter2, /* ... */) {
// Code to be executed
}
};
- methodName: The name of the method.
- parameter1, parameter2, ...: Parameters that the method accepts.
Why it is Used:
- Encapsulation: Methods allow encapsulation of behavior related to the object, promoting code organization.
- Code Reusability: Methods can be reused across different instances of objects.
Example:
const person = {
firstName: 'John',
lastName: 'Doe',
age: 30,
greet: function() {
console.log('Hello!');
},
fullName: function() {
return this.firstName + ' ' + this.lastName;
}
};
person.greet(); // Output: Hello!
console.log(person.fullName()); // Output: John Doe
Accessing Object Properties: Inside an object method, you can access the object's properties using the this keyword.
const person = {
firstName: 'John',
lastName: 'Doe',
age: 30,
printDetails: function() {
console.log(`Name: ${this.firstName} ${this.lastName}, Age: ${this.age}`);
}
};
person.printDetails(); // Output: Name: John Doe, Age: 30
Arrow Function as Object Method: Arrow functions as object methods do not have their own this binding.
const calculator = {
value: 0,
add: (x) => {
// 'this' is not bound to the object
// 'this.value' will not work as expected
return x + calculator.value;
}
};
Object Method Shorthand (ES6+): In modern JavaScript, you can use the shorthand method syntax when defining methods.
const person = {
firstName: 'John',
lastName: 'Doe',
age: 30,
greet() {
console.log('Hello!');
},
fullName() {
return this.firstName + ' ' + this.lastName;
}
};
Summary
- Object methods are functions defined as properties within an object.
- They encapsulate behavior related to the object.
- Object methods can access object properties using the this keyword.
- Arrow functions as object methods do not have their own this binding.
- Shorthand syntax is available for defining object methods in modern JavaScript.