Directive: for-each
<ul>
<li for-each=artists as="artist">
<a href="/artist/" + artist.id>
{{ artist.name }}
</a>
</li>
</ul><ul>
<li for-each=[1, 2, 3]>
{{ item }} takes {{ item.bitLength }} bit(s) to store.
</li>
</ul>Last updated