socket programming

what is the use of "return" in this function need clear explanation

void loop()
{
if(!client.connected()) print("disconnecting "); return;
}

i am very confusing what exactly happening

return jumps out of the function. in this case the function id loop(). the rest of the loop() function is not executed. the loop starts from beginning.