kotlin.js.js

js

external fun js(code: String): dynamic

Platform and version requirements: JS

Puts the given piece of a JavaScript code right into the calling function. The compiler replaces call to js(...) code with the string constant provided as a parameter.

Example:

fun logToConsole(message: String): Unit {
    js("console.log(message)")
}

Parameters

code - the piece of JavaScript code to put to the generated code. Must be a compile-time constant, otherwise compiler produces error message. You can safely refer to local variables of