#javascript
Last updated on Sep 30, 2020 by Suraj Sharma
In this tutorial, you will learn two ways to convert a boolean value to a string value in JavaScript
The toString() method converts a boolean (true or false) to it's respective string
Example:
console.log(true.toString()) // "true"
console.log(false.toString()) // "false"
We can concatenate a boolean value and an empty '' string to convert it to a string
Example
console.log(''+true) // "true"
console.log(typeof (''+false) === 'string') // true
Related Solutions

Suraj Sharma is a JavaScript Software Engineer. He holds a B.Tech degree in Computer Science & Engineering from NIT Rourkela.