can some one tell me difference between "<%%" "<%"
<%%= hello %>
<%= hello %>
i could not find proper answer in google search.
Any explanations will be helpful :)
**Index.html**
<div id="container">Loading...</div>
<script type="script/template" id="hello_sen">
<%= hello %>
</script>
**Backbone View**
class Bckbone.Views.EntriesIndex extends Backbone.View
initialize: ->
@template = _.template($("#hello_sen").html())
render: ->
datas = {hello: "Senthil"}
$(@el).html(@template(datas))
this