js convert boolean to string code example
Example 1: javvascript convert boolean to string
let isValid = true;
console.log(isValid.toString());
console.log(isValid);
Example 2: string to boolean js
let toBool = string => string === 'true';
function toBool(string){
return string === 'true';
}
Example 3: boolean as string javascript
bool.toString()
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: convert boolean to string javascript
booleanToString = b => { return b.toString(); }