_.isNaN() 函数:
- 它用于查找传递的对象的值是否为 NaN。
- 如果对象的值为 NaN,则输出为真,否则为假。
- 我们甚至可以在这个函数中执行加法、减法等操作。
用法:
_.isNaN(object)
参数:
它只需要一个参数,即需要检查的对象。
返回值:
如果对象的值为 NaN,则返回 true,否则返回 false。
Examples:
- 将数字传递给 _.isNan() 函数:
_.isNaN() 函数获取传递给它的元素并检查它的值是否为 NaN。由于传递了一个数字,并且我们知道该数字有自己的值,因此输出将为 false。
html
<!-- Write HTML code here -->
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
var a=10;
console.log(_.isNaN(10));
</script>
</body>
</html>
输出:
- 将“NaN”传递给 _.isNan() 函数:
由于这一次,Nan 本身被传递给函数,因此,当函数检查时,它发现传递的变量具有 NaN 值。因此,输出将是真实的。
html
<!-- Write HTML code here -->
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.isNaN(NaN));
</script>
</body>
</html>
输出:
- 将 “undefined” 传递给 _.isNaN() 函数:
_.isNaN() 函数获取参数,这里是 “undefined” 并开始检查。我们知道,“Undefined” 没有任何值,因此它的值绝对不是 NaN。因此,答案是错误的。
html
<!-- Write HTML code here -->
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
console.log(_.isNaN(undefined));
</script>
</body>
</html>
输出:
- 对_.isNan()函数的输出执行操作:
在这里,我们使用上面解释的示例 2 和 3。然后将它们的值存储在变量 ‘a’ 和 ‘b’ 中。因此,变量 ‘a’ 为假,‘b’ 为真。最后,我们对 ‘a’ 和 ‘b’ 执行 OR 运算,并将结果存储在变量 ‘c’ 中。由于 ‘b’ 为真,因此,‘c’ 为 1。
html
<!-- Write HTML code here -->
<html>
<head>
<script src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js" >
</script>
</head>
<body>
<script type="text/javascript">
var a = _.isNaN(undefined);
var b = _.isNaN(NaN);
var c = a + b;
console.log(a);
console.log(b);
console.log(c);
</script>
</body>
</html>
输出:
笔记:
这些命令在 Google 控制台或 Firefox 中不起作用,因为需要添加他们没有添加的这些附加文件。
因此,将给定的链接添加到您的 HTML 文件中,然后运行它们。
链接如下:
html
<!-- Write HTML code here -->
<script type="text/javascript" src =
"https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.9.1/underscore-min.js">
</script>
相关用法
- Tensorflow.js tf.isNaN()用法及代码示例
- JavaScript isNaN()用法及代码示例
- Lodash _.isNaN()用法及代码示例
- Javascript Number.isNaN()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
注:本文由纯净天空筛选整理自Sakshi98大神的英文原创作品 Underscore.js _.isNaN() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。