Is it possible to change the increment in the #each
logic block?
Using a for loop, it's simple to change the increment to 2, for example:
for (let i = 0; i < items.length; i+=2) {
I get an error when trying to do the same within Svelte's #each
block.