Is it possible to retrieve a handlebar parameter inside a script tag within a handlebars template?
<script>
var myList = {{list}}
</script>
This particular template is invoked from express
using the following:
response.render('template', {list: [1, 2, 3]})