How to use if…else Statement In Javascript

In this approach, we use an if…else statement to check whether the boolean value is true or false, then return the corresponding string.

Example: The below example uses the if-else statement for Boolean to String Conversion in JavaScript.

Javascript




function booleanToString(bool) {
    if (bool) {
        return "true";
    } else {
        return "false";
    }
}
 
// Example usage:
console.log(booleanToString(true)); 
console.log(booleanToString(false));


Output

true
false

JavaScript Program for Boolean to String Conversion

This JavaScript program is designed to convert a boolean value to its corresponding string representation. In JavaScript, boolean values can either be true or false. The goal is to create a function that takes a boolean input and returns a string representation of that boolean value (“true” for true, and “false” for false).

Below are the methods to for Boolean to String Conversion:

Table of Content

  • Using Conditional (Ternary) Operator
  • Using if…else Statement

Similar Reads

Using Conditional (Ternary) Operator

In this approach, we use a conditional (ternary) operator to check if the boolean value is true or false and then return the corresponding string....

Using if…else Statement

...