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