JavaScript - Boolean toString() Method



Description

This method returns a string of either "true" or "false" depending upon the value of the object.

Syntax

Its syntax is as follows −

boolean.toString()

Return Value

Returns a string representing the specified Boolean object.

Example

Try the following example.


   
      JavaScript toString() Method
   
   
      
            
   

Output

flag.toString is : false 
javascript_boolean_object.htm
Advertisements