개념
<script>
/*
[조건문 중괄호 생략]
- 조건문의 내용이 한 줄인 경우 {}중괄호를 생략할 수 있습니다.
- 다만 프로그램의 안전성을 위해 권장하지는 않습니다.
*/
let a = 10;
let b = 20;
if(b > a) document.write("크다<br>");
if(b == a) document.write("같다<br>");
if(b < a) document.write("작다<br>");
// 권장 코드
if(b > a) {
document.write("크다");
}
if(b == a) {
document.write("같다");
}
if(b < a) {
document.write("작다");
}
</script>
HTML
복사