1. Home
  2. /
  3. Kotlin-js-wasm
  4. /
  5. Kotlin/JS WASM Dynamic List

Kotlin/JS WASM Dynamic List - Kotlin-js-wasm Typing CST Test

Loading…

Kotlin/JS WASM Dynamic List — Kotlin-js-wasm Code

Adds items dynamically to a list when a button is clicked.

# kotlin/demo/DynamicList.kt
import kotlin.browser.document
import org.w3c.dom.HTMLButtonElement
import org.w3c.dom.HTMLUListElement

fun main() {
	val ul = document.createElement("ul") as HTMLUListElement
	document.body?.appendChild(ul)

	val button = document.createElement("button") as HTMLButtonElement
	button.textContent = "Add Item"
	document.body?.appendChild(button)

	var count = 1
	button.onclick = {
		val li = document.createElement("li")
		li.textContent = "Item $count"
		ul.appendChild(li)
		count++
		Unit
	}
}

Kotlin-js-wasm Language Guide

Kotlin JS + WebAssembly (kotlin-js-wasm) allows developers to compile Kotlin code into highly optimized WebAssembly modules or JavaScript bundles. It enables strongly typed Kotlin applications to run in browsers, Node.js, and WASI runtimes with excellent interoperability and multiplatform support.

Primary Use Cases

  • ▸Browser applications written entirely in Kotlin
  • ▸High-performance Wasm modules with shared business logic
  • ▸Full-stack Kotlin (Ktor backend + Kotlin/JS/Wasm frontend)
  • ▸Node.js and Deno apps using Kotlin
  • ▸WASI modules for CLI or edge runtimes

Notable Features

  • ▸Two compilation targets: JavaScript (ESBuild) and WebAssembly
  • ▸Interop with JS, DOM, and npm libraries
  • ▸Kotlin Multiplatform code sharing
  • ▸Wasm GC support for efficient memory handling
  • ▸Type-safe React wrappers via KVision, Compose for Web

Origin & Creator

Kotlin JS/WASM is developed and maintained by JetBrains as part of the Kotlin Multiplatform ecosystem.

Industrial Note

kotlin-js-wasm is heavily used where teams want type-safe browser code, shared business logic across platforms, or high-performance UI/compute modules inside browser/desktop/edge environments.

More Kotlin-js-wasm Typing Exercises

Simple Kotlin/JS WebAssembly ProgramKotlin/JS WASM Button ClickKotlin/JS WASM Input BindingKotlin/JS WASM Conditional RenderingKotlin/JS WASM Loop RenderingKotlin/JS WASM Timer UpdateKotlin/JS WASM Event CallbackKotlin/JS WASM Fetch ExampleKotlin/JS WASM Toggle Visibility

Practice Other Languages

CReactPythonC++RustTypeScriptKotlinPHPJavaC#RubyMqlCqlN1qlCypher