Answers for "js set key value for object based on a condition"

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 set key value for object based on a condition"

Code answers related to "Javascript"

Browse Popular Code Answers by Language