if (condition) {
// block of code to be executed if the condition is true
}
\\
''%%if%%''는 소문자로 되어 있습니다. 대문자 %%(If 또는 IF)%%는 %%JavaScript%% 오류를 생성합니다.\\
====Example====
시간이 18:00 이전이면 "Good day"인사를 합니다.\\
Display "Good day!" if the hour is less than 18:00:
Good Evening!
=====The else Statement=====
조건이 거짓인 경우 실행될 코드 블록을 지정하려면 else 문을 사용합니다.\\
====Syntax====
if (condition) {
// block of code to be executed if the condition is true
} else {
// block of code to be executed if the condition is false
}
====Example====
시간이 18 시간 이전이면 "Good day"인사말을 만들고, 그렇지 않으면 "Good evening"을 만듭니다.\\
Click the button to display a time-based greeting:
=====The else if Statement=====
첫 번째 조건이 거짓인 경우, %%''else if''%% 문을 사용하여 새 조건을 지정합니다.\\
====Syntax====
if (condition01) {
// block of code to be executed if the condition01 is true
} else if (condition02) {
// block of code to be executed if the condition01 is false and condition02 is true
} else {
// block of code to be executed if the condition01 is false and condition02 is false
}
\\
====Example====
시간이 10:00 이전이면 "Good morning"인사말을 만들고,\\
그렇지 않은 경우 20:00 이전이면 "Good day"인사말을 만들고,\\
그렇지 않으면 "Good Evening"을 만듭니다.\\
Click the button to display a time-based greeting:
=====More Examples=====
다음 예제는 %%W3Schools%% 또는 %%WWF%% (World Wildlife Foundation)에 대한 링크를 작성합니다.\\
임의의 숫자(random number)를 사용하면 각 링크에 대해 50 %의 확률이 있습니다.
\\
if (Math.random() < 0.5) {
text = "Visit W3Schools";
} else {
text = "Visit WWF";
}
document.getElementById("demo").innerHTML = text;
{{tag>오션 Javascript Conditions if else and else if}}