본문 바로가기

함수에서 if 문 사용시

if( A == B ) { 

 뭔가 뭔가 뭔가

}

else {

   뭔가 뭔가 뭔가

}


VS



if( A == B ) {

  return;

}


뭔가 뭔가 뭔가


끝.