实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
AخA
 
1
<!DOCTYPE html>
2
<html>
3
    <head>
4
        <title>
5
            Unsigned Right Shift Example 1
6
        </title>
7
        <script type="text/javascript">
8
            var oldValue = 64; //equal to binary 1000000
9
            var newValue = oldValue >>> 5; //equal to binary 10 which is decimal 2
10
            alert(newValue); //2
11
        </script>
12
    </head>
13
    <body>
14
    </body>
15
</html>