convert boolean to string javascript 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 javascript

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

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');

Example 6: string to boolean js

JSON.parse('true')

Tags:

Java Example