Is there a way to move through the for loop by value, and not one at a time in VBScript?

I have a one-dimensional array in VBScript that I would like to run, but have the ability to advance by 2,3,4, etc. at each iteration of the loop. In C, that would be trivial, like ...

for (int i = 0; i < 10; i+= 2)
+3
source share
1 answer

Like this:

For i = 0 To 9 Step 2
+8
source

Source: https://habr.com/ru/post/1745824/