-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_file.html
67 lines (60 loc) · 1.42 KB
/
new_file.html
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>学习</title>
<script type="text/javascript">//<![CDATA[
// function compare(a,b){
// if(a <b){
// alert("A is less than B");
// }else if(a > b){
// alert("A is greater than B");
// }else{
// alert("A is equal to B")
// }
// }
//
// compare(8,8)
//]]>
// function doSometing(){
// "use strict"
// //函数体
// }
// function test(){
// message="hi";
//
// }
//
// test();
// alert(message);
// alert(typeof null)
// var message=undefined;
// alert(message==undefined);
// var car =null;
// alert(typeof car);
//
// if(car!=null){
//
// }
// alert(null==undefined);
//
// var message ="Hello world";
// if(message){
// alert("Value is ture")
//
// }
// var result =Number.MAX_VALUE+Number.MAX_VALUE;
// alert(isFinite(result));
// var infinity=Number.POSITIVE_INFINITY
// alert(infinity);
//
// console.log(Number(undefined));
// var num =parseInt("10",12);
// console.log(num)
</script>
<body>
<!--这里放内容 -->
<noscript><p>本页面需要浏览器支持(启用JavaScript)</p></noscript>
</body>
</head>
</html>