ES6 toString()

此方法返回“true”或“false”的字符串,具体取决于对象的值。

语法

以下是相同的语法。

boolean.toString()

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

   <body>
      <script type = "text/javascript">
         var flag = new Boolean(false);  
         document.write( "flag.toString is : " + flag.toString() );
      </script>
   </body>

</html>

成功执行上述代码后,将显示以下输出。

flag.toString is : false

JavaScript Boolean valueOf()方法返回指定的Boolean对象的原始值。以下是相同的语法。boolean.valueOf()例<html> <head> < ...