我智商爆棚
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
415 B

4 months ago
# bool
```js
// usages
chance.bool()
chance.bool({ likelihood: 30 })
```
Return a random boolean value (`true` or `false`).
```js
chance.bool();
=> true
```
The default likelihood of success (returning `true`) is 50%.
Can optionally specify the likelihood in percent:
```js
chance.bool({likelihood: 30});
=> false
```
In this case only a 30% likelihood of `true`, and a 70% likelihood of `false`.