当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript Number转Boolean用法及代码示例


我们使用 JavaScript Boolean() 方法将数字转换为布尔值。 JavaScript 布尔值会产生两个值之一,即真或假。但是,如果要将存储整数 “0” 或 “1” 的变量转换为布尔值,即 “true” 或 “false”。

用法:

Boolean(variable/expression)

示例

HTML


<!DOCTYPE html>
<html>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
  
        <h4>
            Click the button to change the
            number value into boolean.
        </h4>
  
        <button onclick="myFunction()">Change</button>
  
        <p>The number value of the variable is:</p>
  
        <p id="result"></p>
  
        <script>
  
            // Initializing boolvalue as true 
            var numvalue = 1;
  
            // JavaScript program to illustrate boolean 
            // conversion using ternary operator 
            function myFunction() {
  
                document.getElementById("result")
                    .innerHTML = Boolean(numvalue);
            } 
        </script>
    </center>
</body>
  
</html>

注意:如果上述 Boolean() 方法被调用为 Boolean(!numvalue),则结果显示为“false”。同样,如果它被称为 Boolean(!!numvalue),它给出的结果为“真”。

输出:



在点击按钮之前:

单击按钮后:

嘿,怪胎! Web 开发世界中不断涌现的技术总是让人们对这个主题充满热情。但在你处理大型项目之前,我们建议你先学习基础知识。通过我们的 JavaScript 课程学习 JS 概念,开始您的 Web 开发之旅。现在是有史以来最低的价格!




相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 How to convert Number to Boolean in JavaScript ?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。