You can use Exit node when you want to break 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 exit over the iteration when the number is equal to 5, you can use a Exit node with the condition: var1==5 (assuming var1 is the variable containing the number being iterated).

Image description

See Also