实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<script>
6
7
var x;
8
document.write("<p>Only 17 digits: ");
9
x=12345678901234567890;
10
document.write(x + "</p>");
11
12
document.write("<p>0.2 + 0.1 = ");
13
x=0.2+0.1;
14
document.write(x + "</p>");
15
16
document.write("<p>It helps multiplying and dividing by 10: ");
17
x=(0.2*10+0.1*10)/10;
18
document.write(x +"</p>");
19
20
</script>
21
22
</body>
23
</html>
24
25
26