js string true to boolean code example
Example 1: string to boolean javascript
let toBool = string => string === 'true' ? true : false;
function toBool(string){
if(string === 'true'){
return true;
} else {
return false;
}
}
Example 2: string to boolean js
let toBool = string => string === 'true';
function toBool(string){
return string === 'true';
}
Example 3: js string to boolean
var isTrueSet = (myValue == 'true');
var isTrueSet = (myValue === 'true');
Example 4: 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 5: string to boolean javascript
const stringBools = [
'true',
'false',
'asdf'
];
const bools = [];
for (const i = 0; i < stringBools.length; i++) {
const stringBool = stringBools[i];
if (stringBool == true) {
bools.push(true);
} else if (stringBool == false) {
bools.push(false);
} else {
bools.push(null );
}
}