how to convert a boolean to string in javascript code example
Example 1: javvascript convert boolean to string
let isValid = true;
console.log(isValid.toString());
console.log(isValid);
Example 2: string to boolean javascript
let toBool = string => string === 'true' ? true : false;
function toBool(string){
if(string === 'true'){
return true;
} else {
return false;
}
}
Example 3: boolean as string javascript
bool.toString()
Example 4: convert boolean to string javascript
booleanToString = b => { return b.toString(); }