how to cast to boolean in javascript code example
Example 1: 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 2: js string to boolean
// Do
var isTrueSet = (myValue == 'true');
// Or
var isTrueSet = (myValue === 'true');