I also use this when I have a `dynamic` property w...
# javascript
r
I also use this when I have a
dynamic
property which I know is a constructor and should be used with
new
. Any other way to force
new
in generated JS?
t
You can cast dynamic to
JsClass
and call
newInstance()
method
🙏 1