HEAD
Implement a function which convert the given boolean value into its string representation. Note: Only valid inputs will be given.
No examples
function booleanToString(b){
return b == true ? "true" : "false"
}
Try it yourself - CodeWars
Implement a function which convert the given boolean value into its string representation. Note: Only valid inputs will be given.
No examples
function booleanToString(b){
return b == true ? "true" : "false"
}
Try it yourself - CodeWars