| Test case name | Result |
|---|---|
| !!true | |
| Boolean(true) | |
| !!{a: 1, b: 2} | |
| Boolean({a: 1, b: 2}) | |
| !!{} | |
| Boolean({}) | |
| !![1, 2, 3] | |
| Boolean([1, 2, 3]) | |
| !![] | |
| Boolean([]) | |
| !!`string` | |
| Boolean(`string`) | |
| !!`` | |
| Boolean(``) | |
| !!NaN | |
| Boolean(NaN) | |
| !!undefined | |
| Boolean(undefined) | |
| !!null | |
| Boolean(null) | |
| Boolean(false) | |
| !!false | |
| Boolean(0) | |
| !!0 |
This benchmark does not have any results yet. Be the first one to run it!