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

115
Views
JS Object array property initializer / optional chaining

To initialize an Object array property and then push values seems to be a two step approach. Is there an optimal one line approach in ES6? Example of the issue is in the appendError(prop, error) method below.

Question:

Is there one line or more concise approach with JS or lodash?

Future optional chaining seems solve the problem, but is there a solution today? PHP allows $array[prop][] = val;

  class Errors {
    constructor(fields ) {
        this.errors = {};
    }

    /**
     * Clear one or all error fields.
     *
     * @param {string} prop | example: "email"
     * @param {string} error | example: "Invalid email"
     */
    appendError(prop, error) {
        /* Set key and empty array if property doest exist */
        if (!this.has(prop)) this.errors[prop] = [];
        /* then Push value */
        this.errors[prop].push(error);
    }

    /**
     * Determine if an errors exists for the given field.
     *
     * @param {string} prop
     */
    has(prop) {
        return this.errors.hasOwnProperty(prop);
    }
  }
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

You can use Logical nullish assignment (??=) to assign an empty array, if the property value id undefined:

(this.errors[prop] ??= []).push(error);

Example:

class Errors {
  constructor(fields) {
    this.errors = {};
  }

  appendError(prop, error) {
    (this.errors[prop] ??= []).push(error);
  }
}

const errors = new Errors;

errors.appendError('a', 'a');

errors.appendError('a', 'b');

console.log(errors.errors);

about 4 years ago · Juan Pablo Isaza Report

0

You could abuse || for that:

this.errors[prop]?.push(error) || (this.errors[prop] = [error]);
about 4 years ago · Juan Pablo Isaza Report

0

You could write something like:

appendError(prop, error) {
    (this.error[prop] = this.error[prop]||[]) && this.error[prop].push(error) && this.error[prop];
}
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!