Answers for "covert strign boolen js"

3

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language