Can I use the polymer dom-repeat template without an array?
For example I want to render some code 20 times.
<template is="dom-repeat" items="[[itemCounter]]">
<div>Whatever</div>
</template>
This would render <div>Whatever</div> 20 times, but to achieve this I have to create an array "itemCounter" in the components properties with length 20 with the sole purpose of looping over it.
I was wondering if something like this is possible, so I don't need to create the Array.
<template is="dom-repeat" times="20">
<div>Whatever</div>
</template>