前端js中while循环

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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>


</body>
</html>
<script type="text/javascript">
//while循环
// while(条件真假){
// 条件为真 执行
// 为假 不执行
// }
//10亿每天花一半
var i=0;
while(i<=10){
document.write(i+"<br />");
i++;
}
var i=1000000000,a=0;
while(i>1){
i/=2;
document.write(Math.floor(i)+"<br />");
a++;
}
document.write(a+"天<br />");
do{
document.write("do先执行<br />");
}while(false){
document.write("while执行<br />");
}
</script>

运行结果:


前端js中while循环
http://ultracode.cn/2020/11/06/JS/前端js中while循环/
作者
Win
发布于
2020年11月6日
许可协议