Dynamic Type
Dynamic Type
The dynamic type is not supported in code targeting the JVM
Being a statically typed language, Kotlin still has to interoperate with untyped or loosely typed environments, such as the JavaScript ecosystem. To facilitate these use cases, the dynamic
type is available in the language:
val dyn: dynamic = ...
The dynamic
type basically turns off Kotlin's type checker:
- a value of this type can be assigned to any variable or passed anywhere as a parameter,
- any value can be assigned to a variable of type
dynamic
or passed to a function that takesdynamic
as a parameter, -
null
-checks are disabled for such values.
The most peculiar feature of dynamic
is that we are allowed to call any property or function with any parameters on