W3cubDocs

/Kotlin

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 calling function (but not to local variables of outer functions), including parameters. You can't refer to functions, properties and classes by their short names.

val <T : Any> KClass<T>.js: JsClass<T>

Platform and version requirements: JS

Obtains a constructor reference for the given KClass.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.js/js.html