Skip to content

Instantly share code, notes, and snippets.

@sabrinaluo
Created January 6, 2015 11:08
Show Gist options
  • Save sabrinaluo/8bd89b0e509c7a73f968 to your computer and use it in GitHub Desktop.
Save sabrinaluo/8bd89b0e509c7a73f968 to your computer and use it in GitHub Desktop.
handlebars.js array index
{{#each data}}
<div>{{@index}}</div> <!-- start from 0-->
<div>{{this}}</div> <!-- "aa"-->
{{/each}}
<script>
var data = ["aa","bb"]
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment