[JS] 자바스크립트 조건문, 반복문
제어문이란?
시간의 순서에 따라서 실행되는 흐름을 제어하는 것
제어문의 종류는 조건문, 반복문이 존재
조건문
조건에 따라 서로 다른 코드가 실행
if와 else를 사용
true, false 와 비슷
console.log('A');
console.log('B');
if(false){
console.log('C1');
} else {
console.log('C2');
}
console.log('D');
반복문
I
am
King
YuLim
King
YuLim
King
YuLim
!!
이렇게
King
YuLim
이 문구를 반복해서 사용하고 싶을 때
control + C
control + V
로도 할 수 있겠지만
100회를 하고 싶을 때 매우 번거롭다
반복문
for, while, do while ...
While( 조건 ){ 반복적으로 실행할 코드 }
var args = process.argv;
console.log('I');
console.log('am\n');
var i = 0;
while(i < 3){
console.log('King');
console.log('Yulim\n');
i += 1;
}
console.log('!!!');
결과
당신의 시간이 헛되지 않는 글이 되겠습니다.
I'll write something that won't waste your time.
Author And Source
이 문제에 관하여([JS] 자바스크립트 조건문, 반복문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yulim2/JS조건문반복문저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)