JavaScript Templates
We'll focus on using the Handlebars and Mustache template libraries. Other template systems will do similar things though, with different syntax.
- Mustache, "Logic-less" templates
- Handlebars, Handlebars provides the power necessary to let you build semantic templates effectively with no frustration.
<ul>
{{#apples}}
<li>{{.}}</li>
{{/apples}}
</ul>