Is there any way to access `undefined` in Kotlin/W...
# webassembly
r
Is there any way to access
undefined
in Kotlin/WasmJs?
I've tried:
Copy code
external val undefined: JsAny?
and
Copy code
fun undefined(): JsAny? = js("undefined")
but all I get in return is
null
s
No,
undefined
is always converted to
null
in Kotlin
🙏 1