[자바스크립트] 코드아카데미 문제풀이 Introduction to Functions in JS (12/13)
Functions & if / else
함수 내에 조건문을 걸어 들어온 인수에 따라 다른 return 값을 보내는 연습이다.
참고 : 리턴 값으로 문자열을 내보낼 때는 별도의 명령이 필요 없다.
정답 |
// Write your function below. // Don't forget to call your function! var sleepCheck=function(numHours) { if (numHours>=8){return "You're getting plenty of sleep! Maybe even too much!"; } else {return "Get some more shut eye!"} }
sleepCheck(10); sleepCheck(5); sleepCheck(8); |
반응형