Languages
[Edit]
EN

JavaScript - create object with getter

0 points
Created by:
MindOfMadness3
696

In this article, we would like to show you how to create object with getter in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

const user = {
  id: "1",
  username: "Tom",
  country: "USA",
  get name() {
    return this.username;
  }
};

console.log(user.name);  // Tom

 

Practical example

In this example, we use the get keyword to create an object with a getter that returns last number from the numbers array which is inside the object.

// ONLINE-RUNNER:browser;

const object = {
  numbers: [1, 2, 3],
  get last() {
    if (this.numbers.length > 0) {
      return this.numbers[this.numbers.length - 1];
    }
    return undefined;
  },
};

console.log(object.last);  // 3

Output:

3

Related posts

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join