2-17 / 2-18 / 2-19 / 2-20 / 2-21
for(시작; 조건식; 종료식)
동작문;
for(let i=0; i<100; i++){
console.log("Hello");
}
for(let i=0; ; i++){
console.log("Hello");
}
let i=0;
while(true){
if(i===5){
break;
}
i++;
}
console.log(i);
let i = 0;
while(i<10){
i++
if(i%2===0){
continue;
}
console.log(i);
}
for(let i=0; i<10; i++){ for(let j=0; j<10; j++){ console.log(i, j); } }
- i=0일 때, j가 0~9까지 실행되고, i=1이 된다. -> i=9까지 반복
for(let i=0; i<5; i++){ if(i%2===0) continue; for(let j=0; j<5; j++){ if(j%2===0) continue; for(let k=0; k<5; k++){ if(k%2===0) continue; console.log(i,j,k); } } }
- 실무에서는 이중이나 삼중반복문 정도만 사용한다.
for(let i=1; i<10; i++){ if(i%2===0) continue; for(let j=1; j<10; j++){ if(j%2===0) continue; console.log('i * j =',i*j); } }
- 홀수만 나오는 구구단
for(let i=0;i<5;i++){ console.log('*'.repeat(i+1)); }
console.log('*'.repeat(i+1));
의미
- '*'을 i+1만큼 반복해서 출력해라
for(let i=0;i<5;i++){ console.log(' '.repeat(i),'*'.repeat(5-i)); }
- 와 빈칸 동시에 출력하기
- i=0일때, 빈칸은 0번, *은 5번 출력
배열은 0번째부터 시작한다.
요소 갯수 - 1
은 마지막 요소가 몇번째인지 알 수 있다.fruits=['과일싫어'];
예시처럼하면 오류뜬다.