如何在 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>
广告