标签:doc 数字类型 cti alert body utf-8 lse 一个 set
<!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>
标签:doc 数字类型 cti alert body utf-8 lse 一个 set
原文地址:https://www.cnblogs.com/tongguilin/p/12208126.html