HEAD
Complete the method that takes a boolean value and return a "Yes" string for true, or a "No" string for false.
No examples
function boolToWord( bool ){
return bool ? "Yes" : "No"
}
Try it yourself - CodeWars
Complete the method that takes a boolean value and return a "Yes" string for true, or a "No" string for false.
No examples
function boolToWord( bool ){
return bool ? "Yes" : "No"
}
Try it yourself - CodeWars