svelte for loop for index

Solutions on MaxInterview for svelte for loop for index by the best coders in the world

showing results for - "svelte for loop for index"
Nick
10 Jan 2018
1{#each {length: 3} as _, i}
2    <li>{i + 1}</li>
3{/each}
4