JavaScript의 조건문.
조건은 프로그래밍에서 매우 중요한 주제입니다.
코드에서 True 및 False 조건을 결정하므로 프로그래밍에서 광범위하게 사용됩니다. 세 가지 유형이 있습니다.
노트
if, else if, else는 키워드이며 If, Else if, Else와 동일하지 않습니다.
2. if 조건
if 조건이 True 조건을 결정합니다.
통사론
if (condition) {
//the code block to be executed if condition is True
}
2.1- if 조건의 예
예 1:
const var1=10;
if (var1==10){
console.log("Its right")
산출
"맞아".
위의 예에서는 변수를 선언하고 값을 할당한 다음 if 조건을 통해 값을 확인했습니다.
예 2:
if (10/2 == 5){
console.log("Its correct")
}
산출
"맞아요".
3.else if 조건
else if 조건 앞에 if 조건이 있으며 첫 번째 if 조건이 True가 아닐 때 검사됩니다.
3.1 구문
else if(condition){
//the block of code to be executed if the first if condition is False
}
3.2- else if 조건의 예
예 1:
const var1=50;
if (var1>100){
console.log("Its greater than 100")
}else if(var1>40){
console.log("Its greater than 40")
}else{
console.log("Input Invalid")
}
산출
40보다 큽니다.
위의 예에서 먼저 조건이 False인 시스템에서 검사한 경우 기계에서 조건이 True인 경우 다른 조건을 검사했습니다.
4. 다른 조건
지정된 조건이 False일 때 실행되는 코드 블록입니다.
4.1-구문
else {
//code block to be executed when if condition id not True
}
4.2-다른 조건의 예
예 1:
const num1=10;
const num2=20;
if (num1>num2){
console.log("num1 is greater than num2")
}else{
console.log("num2 is greater than num1")
}
예 2:
const var1=10;
if (var1 % 2 !== 0){
console.log("Its a Even Number")
}else{
console.log('Its a Odd Number')
}
Reference
이 문제에 관하여(JavaScript의 조건문.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jindalkeshav82/conditional-statement-in-javascript-3bg7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)