Anders Larsson
Results
2
comments of
Anders Larsson
trafficstars
You might have code like this const obj = { prop1:1, optionalProp2:2, // optionalProp3:3 in this case this property is not set } myRecord.a = obj.prop1; myRecord.b = obj.optionalProp2; myRecord.c...
... sorry, part of my last response was lost. But doing Object.keys (myRecord) and then set all these values using the JS SDK would cause a record.Set ("optionalProp3", undefined);. Anyway,...