How to use JavaScript _ Kicklet.app
How to use JavaScript _ Kicklet.app
Kicklet.app
SearchK
Main Navigation HomeDocumentation
Appearance
Menu
On this page
Sidebar Navigation
Documentation
Introduction
Default Commands
JavaScript / Template
Example Commands
On this page
js
<template>
Hello {{script.Call "testFunction"}}!
</template>
<script>
function testFunction() {
return 'world';
}
</script>
js
<template>
Hello {{script.Var "worldVariable"}}!
</template>
<script>
let worldVariable = 'world';
</script>
Pager
Previous pageJavaScript / Template
Next pageExample Commands