如何在 JavaScript 中将布尔值转换成字符串值?


在 JavaScript 中将布尔值转换成字符串值,可以使用 toString() 方法。此方法会根据对象的 value 返回一个字符串 “true” 或 “false”。

示例

您可以尝试运行以下代码,将布尔值转换成字符串值 -

在线演示

<html>
   <head>
      <title>JavaScript toString() Method</title>
   </head>

   <body>
      <script>
         var flag = new Boolean(true);
         document.write( "flag.toString is : " + flag.toString() );
      </script>
   </body>
</html>

更新时间:15-6-2020

16K+ 浏览

开启你的 职业生涯

完成课程获得认证

开始
广告