javascript convert boolean to string code example

Example 1: javvascript convert boolean to string

// To convert a boolean to a string we use the .toString() method
let isValid = true;

console.log(isValid.toString()); // outputs "true"
console.log(isValid); // outputs true

Example 2: string to boolean js

// Everyone does one extra check. Here is a better answer

let toBool = string => string === 'true'; // ? true : false;
// Not everyone gets ES6 so here for the beginners
function toBool(string){
	return string === 'true';
}

Example 3: boolean as string javascript

bool.toString()

Example 4: convert boolean to string javascript

booleanToString = b => { return b.toString(); }
// Way cleaner Version! easy readability!!

Example 5: javascript true string to boolean

var isHidden='true';
var isHiddenBool = (isHidden == 'true');