-
Notifications
You must be signed in to change notification settings - Fork 0
/
js_0602_practice_break.html
66 lines (49 loc) · 1.27 KB
/
js_0602_practice_break.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--break-->
<!--break應用如下-->
<script>
//break練習題
//for(let i = 1; i<=10; i++0 ){
//console.log(i);
//if(i == 4 ){
// break;
//}
//}
//js_for continue(跳出)
//continue這裡在jscode不是持續是跳出去
//for(let i = 1; i<=10; i++){
//if(i == 4) {
// continue;
//}
//console.log(`這是第${i}次`);
//}
//for(let i = 1; i <= 40; i++){
//if(i % 2 ==0) {
// continue;
//}
//console.log(`這是第${i}次`);
//}
// 練習二
// 只顯示基數
// 30以下顯示
for (let i = 1; i <= 50; i++) {
// 大於30跳掉
if (i > 30) {
break;
}
if (i % 2 == 0) {
continue;
}
console.log(`這是第${i}次`);
}
</script>
</body>
</html>