isNaN()

Posted tongguilin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了isNaN()相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

 

<script>

 

// NaN:not a number 不是个 数字 的 数字类型

// isNaN:Is not a number 是不是不是一个数字(不是数字)

 

isNaN(); // true false

// 判断某些值是不是数字

// 不喜欢数字、讨厌数字

 

// alert( isNaN( function(){ alert(1) } ) );

// alert( isNaN(‘250‘) );

// Number() ‘250‘ => 250 => false

 

// alert( isNaN( [] ) );

 

</script>

 

</head>

 

<body>

</body>

</html>

以上是关于isNaN()的主要内容,如果未能解决你的问题,请参考以下文章

[ES2015] Number.isNaN instead of isNaN

函数isNaN()

js中isNaN和Number.isNaN的区别

isNaN() 与 parseInt() 混淆

ESLint 意外使用 isNaN

关于isNaN() 判断是否是非数字