[한입 리액트] 자바스크립트 기초
·
JavaScript
반복문= loop, iterationfor문for (초기식; 조건식; 증감식;) { // if문의 조건이 true 일 때, 이후 실행문을 실행시키지 않고, 다음 조건식으로 for문을 수행 if(조건) continue; 실행문; // if문의 조건이 true 일 때, for문을 종료 if(조건) break;} 함수// 함수선언function greeting() { console.log('안녕');}// 함수호출greeting(); // 소괄호와 함께 호출 필수===// 함수function getArea(width, height) { // 매개변수 let area = width * height; // console.log(area) return area; // 반환..