当前位置:网站首页>JS中null NaN undefined这三个值有什么区别
JS中null NaN undefined这三个值有什么区别
2022-07-07 14:15:00 【Vayne的胖虎子】
我们在JS数据类型中肯定会遇到比较陌生的面孔,比如NaN和undefined,对于null我们在Java中就早早接触过,那么我们来通过代码看一下这三个东西有什么关系和区别呢?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>null NaN undefined这三个值有什么区别</title>
</head>
<body>
<script type="text/javascript">
// == 是等同运算符
alert(1 == true); // true
alert(1 === true); // false
// null NaN undefined 数据类型不一致.
alert(typeof null); // "object"
alert(typeof NaN); // "number"
alert(typeof undefined); // "undefined"
// null和undefined可以等同.
alert(null == NaN); // false
alert(null == undefined); // true
alert(undefined == NaN); // false
// 在JS当中有两个比较特殊的运算符
// ==(等同运算符:只判断值是否相等)
// ===(全等运算符:既判断值是否相等,又判断数据类型是否相等)
alert(null === NaN); // false
alert(null === undefined); // false
alert(undefined === NaN); // false
</script>
</body>
</html>
边栏推荐
- leetcode 241. Different ways to add parentheses design priority for operational expressions (medium)
- php 自带过滤和转义函数
- 一个普通人除了去工厂上班赚钱,还能干什么工作?
- 121. The best time to buy and sell stocks
- Migration and reprint
- TCP framework___ Unity
- 无法将“pip”项识别为 cmdlet、函数、脚本文件或可运行程序的名称
- PHP实现执行定时任务的几种思路详解
- TiDB For PostgreSQL和YugabyteDB在Sysbench上的性能对比
- Description of vs common shortcut keys
猜你喜欢
通知Notification使用全解析
Apache Doris just "graduated": why should we pay attention to this kind of SQL data warehouse?
Dotween -- ease function
[flower carving experience] 15 try to build the Arduino development environment of beetle esp32 C3
Logback logging framework third-party jar package is available for free
Good news! Kelan sundb database and Hongshu technology privacy data protection management software complete compatibility adaptation
深度之眼(七)——矩阵的初等变换(附:数模一些模型的解释)
【C 语言】 题集 of Ⅹ
Wireless sensor networks -- ZigBee and 6LoWPAN
过度依赖补助,大客户收款难,冲刺“国产数据库第一股”的达梦后劲有多足?
随机推荐
PHP realizes wechat applet face recognition and face brushing login function
laravel构造函数和中间件执行顺序问题
asyncio 概念和用法
TiDB For PostgreSQL和YugabyteDB在Sysbench上的性能对比
Bidding announcement: Fujian Rural Credit Union database audit system procurement project (re bidding)
How does geojson data merge the boundaries of regions?
Laravel 中config的用法
过度依赖补助,大客户收款难,冲刺“国产数据库第一股”的达梦后劲有多足?
删除 console 语句引发的惨案
【知识小结】PHP使用svn笔记总结
Numpy -- epidemic data analysis case
Balanced binary tree (AVL)
【C 语言】 题集 of Ⅹ
A JS script can be directly put into the browser to perform operations
PHP has its own filtering and escape functions
修改配置文件后tidb无法启动
leetcode 241. Different Ways to Add Parentheses 为运算表达式设计优先级(中等)
Markdown formula editing tutorial
three.js打造酷炫下雪效果
[flower carving experience] 15 try to build the Arduino development environment of beetle esp32 C3