default 문은 생략가능하다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>switch</title></head>
<body>
<h3>switch 문으로 커피 주문</h3>
<hr>
<script>
var price = 0;
var coffee = prompt("무슨 커피 드릴까요?","");
switch(coffee) {
    case "espresso" :
    case "에스프레소" : price = 2000;
        break;
    case "카푸치노" : price = 3000;
        break;
    case "카페라떼" : price = 3500;
        break;
    default : // default문은 생략가능
        document.write(coffee + "는 없습니다.");
}
if(price != 0)
    document.write(coffee + "는 " + price + "원입니다.");
</script>
</body>
</html>
 
cs


Posted by 너래쟁이
: