Am I missing something, or is there no support for...
# javascript
j
Am I missing something, or is there no support for creating a new instance via reflection in the js runtime?
b
Reflection is pretty much nonexistent in js save for KClass.simpleName. However you can use js("{}").unsafeCast<T>() to achieve a similar effect
🙏 1