Boolean value to string

PHOTO EMBED

Thu Feb 23 2023 10:35:49 GMT+0000 (Coordinated Universal Time)

Saved by @AlanaBF #javascript

function boolToWord( bool ){
 if (bool === true) return "Yes"
  else return "No"
}
content_copyCOPY