string bool to bool js 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: javascript true string to boolean
var isHidden='true';
var isHiddenBool = (isHidden == 'true');