For example given
const a = {
  "a": 1,
  "b": "hi",
}
const c = "54"
const d = "66"
I want a to be
a = {
  "a": 1,
  "b": "hi",
  "c": 54,
  "d": 66,
}
I want to do it in a single line so
 a = {c, d}
But the above code will get rid of a, b. Any quick way to accomplish this?
 
     
     
    