案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<script type="text/javascript">
5
var myBoolean=new Boolean(1);
6
document.write(myBoolean);
7
document.write("<br />");
8
9
var myBoolean=new Boolean(true);
10
document.write(myBoolean);
11
document.write("<br />");
12
13
var myBoolean=new Boolean("true");
14
document.write(myBoolean);
15
document.write("<br />");
16
17
var myBoolean=new Boolean("false");
18
document.write(myBoolean);
19
document.write("<br />");
20
21
var myBoolean=new Boolean("Bill Gates");
22
document.write(myBoolean);
23
document.write("<br />");
24
</script>
25
26
</body>
27
</html>
28