Answers for "boolean to string typescript"

1

javvascript convert boolean to string

// To convert a boolean to a string we use the .toString() method
let isValid = true;

console.log(isValid.toString()); // outputs "true"
console.log(isValid); // outputs true
Posted by: Guest on March-08-2020
0

boolean to string typescript

// cannot use toString(), use instead String()
var myBool: boolean = true;
var myString: string = String(myBool);
Posted by: Guest on February-10-2021
0

convert boolean to string javascript

booleanToString = b => { return b.toString(); }
// Way cleaner Version! easy readability!!
Posted by: Guest on April-05-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language