| Test case name | Result |
|---|---|
| Boolean(undefined) | |
| !![] | |
| Boolean([]) | |
| !!1 | |
| Boolean(1) | |
| !!'string' | |
| Boolean('string') | |
| !!'s' | |
| Boolean('s') | |
| !!NaN | |
| Boolean(NaN) | |
| !!'' | |
| Boolean('') | |
| !!0 | |
| Boolean(0) | |
| !!null | |
| Boolean(null) | |
| !!undefined | |
| Boolean({}) | |
| !!{} |
This benchmark does not have any results yet. Be the first one to run it!