조건문 switch 기본적인 형태
const day = 'monday'
switch (day) {
case 'monday': <-- 조건문 day === 'monday' 아래로 진행!
consloe.log('sth')
brack <--를 해줘야한다.
}
monday 를 출력하면 "Study coding!", "Fighting!" 가 출력된다.
차례대로 'tuesday','wednesday' ... 차례대로 출력 후
const day = "24hours" 를 해주면 default 값인 Not a valid Day가 입
력된다.default 는 if문의 else와 비슷한 역할을 한다.
break를 해주지 않으면 연속으로 3개가 출력되는걸 볼수 있다.