UNPKG

wat

Version:

Community-controlled cheat sheets for every coder.

9 lines (6 loc) 169 B
## .toString() Returns a string representing the specified `Boolean` object. ```js var bool = new Boolean(true); var str = bool.toString(); // "true" ```