//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";
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter