728x90 반응형 SMALL 조건문2 [JavaScript] 조건문 조건문 if : 조건이 참인 경우 실행할 코드 블록을 정의한다. else if : 이전 조건이 거짓이고 현재 조건이 참인 경우 실행할 코드 블록을 정의한다. else : 모든 이전 조건이 거짓인 경우 실행할 코드 블록을 정의한다. switch : 두 개 이상의 조건을 비교할 때 사용한다. html js // 두 숫자 중 큰 숫자를 찾는 프로그램 var num1 = parseInt(prompt("Enter first numebr : ")) var num2 = parseInt(prompt("Enter second numebr : ")) // if if (num1 > num2) { console.log("Large Number is : " + num1) } if (num1 < num2) { console.lo.. 2023. 5. 31. [JavaScript] 구문 / 명령 (3) 조건문 참인 경우 코드 블록을 실행한다. var x = 10; if(x > 5){ console.log('Yes'); } if(x > 5){ console.log('Yes'); } else{ console.log('No'); } 스위치 (Switch) 실행할 여러 코드 블록 중 하나를 선택한다. switch(x){ case 1: console.log('1'); break; case 2: console.log('2'); break; default: console.log('3, 4, ...'); break; } 함수 (Function) 작업을 실행하도록 설계된 코드 블록이다. 만든 다음 나중에 호출할 수 있다. function Hello(){ console.log('Hello World'); } 2023. 5. 30. 이전 1 다음 728x90 반응형 LIST