← Back to challenges

Boolean to String Conversion

JavaScriptMediumbit_operationsconditionslogicstrings

Instructions

Create a function that takes a boolean variable flag and returns it as a string.

Examples

boolToString(true) ➞ "true"

boolToString(false) ➞ "false"

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
javascript
Loading editor…
to run
Walks through the solution with reasoning and edge cases.
Next: Using Arrow Functions