You can use Skip node when you want to skip an iteration from the For node, based on a condition.

Eg

In the below example, if you have a For loop that iterates through a list of numbers and you want to skip over the iteration when the number is equal to 5, you can use a Skip node with the condition: var1==5 (assuming var1 is the variable containing the number being iterated).

Image description