728x90
1. return을 활용한 반복문 (console.log 결합)
: console.log를 결합하여 return으로 구성된 반복문 만들기
function 점수(숫자){
if (숫자 < 30){
console.log("C");
return;
}
if (숫자 < 70){
console.log("B");
return;
}
console.log("A");
};
점수(20);
C
2. return만을 활용한 반복문
: return으로 구성된 반복문 만들기
function 점수(숫자){
if (숫자 < 30){
return "C";
}
if (숫자 < 70){
return "B";
}
return "A";
};
점수 (80);
"A"
3. else if 를 활용한 반복문 (유사식)
: return으로 구성된 반복문과 유사한 식을 else if 로 표현
function 점수(숫자){
if (숫자 < 30){
return "C";
} else if (숫자 < 70){
return "B";
} else {
return "A";;
}
};
점수 (50);
"B"
728x90
'Study Note > Javascript' 카테고리의 다른 글
■ JSON(JavaScript Object Notation) 개요 (0) | 2018.07.11 |
---|---|
JS note#13_ 같은 배열인지 비교하기 (0) | 2018.01.25 |
JS note#11_ 반복문을 이용한 문자열 변환 (0) | 2018.01.18 |
JS note#10_ 무작위 문자열 생성기 (0) | 2018.01.18 |
JS note#9_배열 원소 일괄 이름변경하기 (for) (0) | 2018.01.18 |
댓글