#DynamicProperty

1 messages · Page 1 of 1 (latest)

random coral
#

If your value is not too large, you can stringify it with JSON.stringify(value)

#

The second parameter of JSON.stringify its for a value reviver in case it doesn't stringify well

#

You can do it like this```js
const str = JSON.stringify({
text1: 'Hello World',
text2: 'Goodye World'
});

const { text1, text2 } = JSON.parse(str);