Answers for "conditionally add property to object ts"

1

conditionally add property to object ts

const a = {
   ...(someCondition && {b: 5})
}
Posted by: Guest on December-09-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 "conditionally add property to object ts"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language