I know a break statement jumps out of a loop, but does it jump out of nested loops or just the one its currently in?
break
it breaks 1 loop . very simple. for ex:
for loop for loop break; end for loop end for loop
break out of inner loop but still in outer loop