Convert a Boolean to a String - 1

PHOTO EMBED

Sat Apr 30 2022 23:41:22 GMT+0000 (Coordinated Universal Time)

Saved by @Jiahua #javascript

//mplement a function which convert the given boolean value into its string representation.

//Note: Only valid inputs will be given.

function booleanToString(b){
  if(b){
    //just return a string
    return "true";
  }else{
    //just return a string
    return "false";
  }
}
content_copyCOPY