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

142
Views
How to call class constructor with some parameters omitted?

I'm trying to pass different combinations of arguments to a class constructor. The constructor takes 2 arguments that are both optional. Here is the code:

class MyClass {
  foo(a, b) {
    return new MyClass(a, b);
  }

  bar(a) {
    return new MyClass(a);
  }

  baz(b) {
    return new MyClass(b);
  }

constructor(a?: TypeA, b?: TybeB) {}
}

The first two instantiations work, but the third attempt fails. It says: "Argument of TypeB is not assignable to parameter of TypeA". Baz(b) works if I rearrange the parameters of the constructor to become constructor(b?: TybeB, a?: TybeA), but now foo(a, b) fails.

Is there another way to do this?

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

0

You need to call

return new MyClass(undefined, b);
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!