JS 知识点补充
Posted Powell Zhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 知识点补充相关的知识,希望对你有一定的参考价值。
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <title></title>
6 </head>
7 <body>
8 </body>
9
10 <script type="text/javascript">
11 // NaN
12 // 问题1:如何判断一个对象是不是数字
13 //isNaN() 如果括号里面填写的是数字 返回 false
14 // console.log(isNaN("abc"));
15 // 备注:在一些资料上 NaN 也是一种数据类型
16 console.log(typeof NaN);// number
17 console.log(isNaN(true)); // false
18 console.log(isNaN("123")); //false
19
20 // null和 undefined
21 // var result = (null == undefined);
22 // console.log(result);
23 // undefined 在最初的时候 其实是当做一个错误去处理
24 // null表示一个值为空
25 // 在使用的时候,如果一个变量需要清除值,让变量=null
26
27 //匿名函数的调用方式
28 (function(i){
29 console.log("hehe");
30 console.log(i);
31 })(6);
32
33 (function(){
34 console.log("heihei");
35 })();
36 </script>
37
38 </html>
以上是关于JS 知识点补充的主要内容,如果未能解决你的问题,请参考以下文章