实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
    <head>
4
        <title>
5
            While Statement Example 1
6
        </title>
7
        <script type="text/javascript">
8
            var i = 0;
9
            while (i < 10) {
10
                i += 2;
11
            }
12
13
            alert(i);
14
        </script>
15
    </head>
16
    <body>
17
    </body>
18
</html>