parse string to boolean javascript code example

Example 1: java string to boolean

String value = "true"; 
boolean b = Boolean.parseBoolean(value); 
System.out.println(b);

Read more: https://www.java67.com/2018/03/java-convert-string-to-boolean.html#ixzz6HF3C1ERb

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: 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 4: js string to boolean

// Do
var isTrueSet = (myValue == 'true');
// Or
var isTrueSet = (myValue === 'true');

Example 5: convert string true to boolean true javascript

stringToBoolean: function(string){
    switch(string.toLowerCase().trim()){
        case "true": case "yes": case "1": return true;
        case "false": case "no": case "0": case null: return false;
        default: return Boolean(string);
    }
}

Example 6: javascript true string to boolean

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