We're a place where coders share, stay up-to-date and grow their careers.
shortest version I can think of:
javascript
const boolToStr = b => '' + b;
or a more safe version that wont print null or undefined, rather it will convert it to true/false depending on its "truthiness":
null
undefined
const boolToStr = b => '' + !!b;
shortest version I can think of:
javascript
or a more safe version that wont print
null
orundefined
, rather it will convert it to true/false depending on its "truthiness":javascript