# Loop
If you want to render an array you can use the loop functionality.
{{#loop objs as obj}}
<p>{{ obj }}</p>
{{/loop}}
<script>
let objs = ['a', 'b', 'c', 'd'];
</script>
If you want to render an array you can use the loop functionality.
{{#loop objs as obj}}
<p>{{ obj }}</p>
{{/loop}}
<script>
let objs = ['a', 'b', 'c', 'd'];
</script>