by defaults its passing from intial counting like 1 2 3 4. Lets say we need to pass from 30 to 40 because 1 to 10 is reserved for some other purpose. can we do that
count.index + 30
this will start the count from the number 30.
for example - if you have count = 3 and count.index +30 this combination will count 3 numbers, starting from the number 30 (31,32 and 33)
by defaults its passing from intial counting like 1 2 3 4. Lets say we need to pass from 30 to 40 because 1 to 10 is reserved for some other purpose. can we do that