<body style="text-align: center">
<h2>Hi</h2>
<script>
if (true) {
document.write("Hello");
} else {
document.write("Bye");
}
</script>
// ture 인 경우, Heloo 출력
<h2>Bye</h2>
<script>
if (false) {
document.write("Hello");
} else {
document.write("Bye");
}
</script>
// false 인 경우, Bye 출력
</body>
if, else 릍 통해 코드에 조건을 주어 특정 값만 출력할 수 있음.
if, else, elif 등 너무 많은 조건이 있다면 어떻게 해야 코드 가독성을 올릴 수 있을까