Use JavaScript code from Kotlin
Kotlin was first designed for easy interoperation with the Java platform: it sees Java classes as Kotlin classes, and Java sees Kotlin classes as Java classes.
However, JavaScript is a dynamically typed language, which means it does not check types at compile time. You can freely talk to JavaScript from Kotlin via dynamic types. If you want to use the full power of the Kotlin type system, you can create external declarations for JavaScript libraries which will be understood by the Kotlin compiler and the surrounding tooling.
Inline JavaScript
You can inline JavaScript code into your Kotlin code using the js() function. For example:
Because the parameter of js is parsed at compile time and translated to JavaScript code "as-is", it is required to be a string constant. So, the following code is incorrect:
Note that invoking js() returns a result of type dynamic, which provides no type safety at compile time.
external modifier
To tell Kotlin that a certain declaration is written in pure JavaScript, you should mark it with the external modifier. When the compiler sees such a declaration, it assumes that the implementation for the corresponding class, function or property is provided externally (by the developer or via an npm dependency), and therefore does not try to generate any JavaScript code from the declaration. This is also why external declarations can't have a body. For example:
Note that the external modifier is inherited by nested declarations. This is why in the example Node class, there is no external modifier before member functions and properties.
The external modifier is only allowed on package-level declarations. You can't declare an external member of a non-external class.
Declare (static) members of a class
In JavaScript you can define members either on a prototype or a class itself:
There is no such syntax in Kotlin. However, in Kotlin we have companion objects. Kotlin treats companion objects of external classes in a special way: instead of expecting an object, it assumes members of companion objects to be members of the class itself. MyClass from the example above can be described as follows:
Declare optional parameters
If you are writing an external declaration for a JavaScript function which has an optional parameter, use definedExternally. This delegates the generation of the default values to the JavaScript function itself:
With this external declaration, you can call myFunWithOptionalArgs with one required argument and two optional arguments, where the default values are calculated by the JavaScript implementation of myFunWithOptionalArgs.
Extend JavaScript classes
You can easily extend JavaScript classes as if they were Kotlin classes. Just define an external open class and extend it by a non-external class. For example:
There are some limitations:
When a function of an external base class is overloaded by signature, you can't override it in a derived class.
You can't override a function with default arguments.
Non-external classes can't be extended by external classes.
external interfaces
JavaScript does not have the concept of interfaces. When a function expects its parameter to support two methods foo and bar, you would just pass in an object that actually has these methods.
You can use interfaces to express this concept in statically typed Kotlin:
A typical use case for external interfaces is to describe settings objects. For example:
External interfaces have some restrictions:
They can't be used on the right-hand side of
ischecks.They can't be passed as reified type arguments.
They can't be used in class literal expressions (such as
I::class).ascasts to external interfaces always succeed. Casting to external interfaces produces the "Unchecked cast to external interface" compile time warning. The warning can be suppressed with the@Suppress("UNCHECKED_CAST_TO_EXTERNAL_INTERFACE")annotation.IntelliJ IDEA can also automatically generate the
@Suppressannotation. Open the intentions menu via the light bulb icon or Alt-Enter, and click the small arrow next to the "Unchecked cast to external interface" inspection. Here, you can select the suppression scope, and your IDE will add the annotation to your file accordingly.
Casts
In addition to the "unsafe" cast operator as, which throws a ClassCastException in case a cast is not possible, Kotlin/JS also provides unsafeCast<T>(). When using unsafeCast, no type checking is done at all during runtime. For example, consider the following two methods:
They will be compiled accordingly:
Equality
Kotlin/JS has particular semantics for equality checks compared to other platforms.
In Kotlin/JS, the Kotlin referential equality operator (===) always translates to the JavaScript strict equality operator (===).
The JavaScript === operator checks not only that two values are equal but also that the types of these two values are equal:
Also, in Kotlin/JS, the Byte, Short, Int, Float, and Double numeric types are all represented with the Number JavaScript type in runtime. Therefore, the values of these five types are indistinguishable: