Javascript - 조건문_1
코드
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <h1>Conditional statements</h1> <h2>Program</h2> <script> document.write("1<br>"); document.write("2<br>"); document.write("3<br>"); document.write("4<br>"); </script> <h2>IF-true</h2> <script> document.write("1<br>"); if(true){ document.write("2<br>"); } else { document.write("3<br>"); } document.write("4<br>"); </script> <h2>IF-false</h2> <script> document.write("1<br>"); if(false){ document.write("2<br>"); } else { document.write("3<br>"); } document.write("4<br>"); </script> </body> </html>
실행화면
설명
- 조건문은
if
의 가로 안에 조건이true
인지false
인지에 따라서if
를 실행할지else
를 실행할지를 결정하게 된다.- 위의 코드를 예로 들어보면 IF-true의 조건문은
(true)
로 설정되어 있고 실행화면에서는 3이 보이지 않는다.
- 3이 실행되지 않는 이유는
if
문을true
로 고정시켜 놓았기 때문에 참으로 판단하고if
를 실행하고else
를 무시했기 때문이다.- 마찬가지로 If-false에서는
false
가 고정되어 있기 때문에else
가 실행되어 3이 출력되고if
가 무시된다.
- 생활코딩 강의를 바탕으로 기록하였습니다.
Author And Source
이 문제에 관하여(Javascript - 조건문_1), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sangjin/Javascript-조건문저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)