Élément de tableau conditionnel JS

const cond = false;
const arr = [
  ...(cond ? ['a'] : []),
  'b',
];
    // ['b']
Defiant Dragonfly