Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

128
Views
Get all getters results as class variables without specific invoking

Is there a way I can get all the getters results on the instance without specific invoking? I want to get all class getters as simple members on the class by looping on the class member.

I have a class like this:

export class Test {
  constructor() {}

  get foo() {
    return 1
  }

  get bar() {
    return 2
  }
}

The use is create a new instance: const test = new Test()

Is there a way I can get all the getters as simple class variable members and not as functions? so I can pass the object from server to client.

Thanks!

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

class Test {
  constructor() {}

  get foo() {
     return 1
  }

  get bar() {
    return 2
  }
}

const allGetterKeys = Object.entries(Object.getOwnPropertyDescriptors(Test.prototype)).filter(([key, descriptor]) => typeof descriptor.get === 'function').map(([key]) => key);

const test = new Test();
const out = {};

for(const key of allGetterKeys)
{
  out[key] = test[key];
}

console.log(out);

The first line comes from this answer (it gets the key names of all the getters on the class). Then the for loop uses all those keys to get the output from the getter and put them into a plain object out. That object is just key value pairs.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!