javascript , , javascript. , name, javascript, , <script></script>.
. , , , . :
<body>
<button onclick="js_fn('{{ py_fn('some_string') }}')">Click me</button>
<script>
function js_fn(variable) {
alert(variable);
}
</script>
</body>
( _index.html). , py_fn , _index.html, "py_fn (" some_string ")" {{ py_fn('some_string') }} . say py_fn - : , . py_fn ('some_string') 'some_string', , , "" :
<body>
<button onclick="js_fn('some_string')">Click me</button>
<script>
function js_fn(variable) {
alert(variable);
}
</script>
</body>
, , js- script, js_fn window, - . , , js_fn some_string. , JS Python/Flask .