Js的null undefined NaN
Posted 动起来mygod
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Js的null undefined NaN相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>第一个javascript计算页面</title>
</head>
<body>
<script type="text/javascript">
var v1=null;
var v2=NaN;
var v3=undefined;
alert(typeof v1);//object
alert(typeof v2);//number
alert(typeof v3);//undefined
alert(v1===v2);//false
alert(v2===v3);//flase
alert(v1===v3);//false
alert(v1==v2);//false
alert(v1==v3);//true
alert(v2==v3);//false
</script>
</html>
以上是关于Js的null undefined NaN的主要内容,如果未能解决你的问题,请参考以下文章