Not sure why can't figure this out, how do I do al...
# javascript
g
Not sure why can't figure this out, how do I do alert/confirm type JS function? js("alert('Hello from Kotlin')") works but shouldn't there be an alert function somewhere already?
a
Copy code
window.alert("xyzzy")
g
Deerrr... thanks!