728x90 320x100 SMALL [JAVAScript/자바스크립트]if, else, else if, for, forin, switch, continue, break 조건문 if 참일경우 실행 else 동일 조건이 false인경우 실행 else if 첫번째 조건이 false인경우 새 조건 지정해서 테스트 switch 실행할 많은 대체 코드 블록을 지정할때 if (condition1) { // block of code to be executed if condition1 is true } else if (condition2) { // block of code to be executed if the condition1 is false and condition2 is true } else { // block of code to be executed if the condition1 is false and condition2 is false } 대문자 IF를 사용시 오류 발생 .. 2022. 10. 12. 이전 1 다음 728x90 반응형 BIG