I am using Handlebars for my views and I want to pass returned data from database to javascript/jQuery. What will be the similar logic to this code in Handlebars?
//These lines of code are from Jade template.
<script type="text/javascript">
var SydJS = {};
SydJS.meetup = !{JSON.stringify(meetup)};
</script>