In section "21.6 Booleans" you advice to use `Boolean(x)` to parse a value into a boolean. Please note that parsing mostly any String results in `true`: ``` Boolean("false") => true ``` `null, undefined and ""` parse to `false`.