Answers for "js add object property conditionally"

36

js conditional object property

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

conditionally add property to object ts

const a = {
   ...(someCondition && {b: 5})
}
Posted by: Guest on December-09-2020

Code answers related to "js add object property conditionally"

Code answers related to "Javascript"

Browse Popular Code Answers by Language