Answers for "check condition and add item to object"

36

js conditional object property

const a = {
   ...(someCondition && {b: 5})
}
Posted by: Guest on October-22-2020
1

conditionally add key to object javascript

const condition = getCondition();
const additionalCondition = getAdditionalCondition();

const person = {
  firstName: "Max",
  ...(condition && { lastName: "" }),
  ...(additionalCondition && { addition: "" }),
};
Posted by: Guest on December-03-2020

Code answers related to "check condition and add item to object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language