mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-09 22:03:35 +08:00
28 lines
393 B
Markdown
28 lines
393 B
Markdown
# hour
|
|
|
|
```js
|
|
// usage
|
|
chance.hour()
|
|
chance.hour({twentyfour: true})
|
|
```
|
|
|
|
Generate a random hour
|
|
|
|
```js
|
|
chance.hour();
|
|
=> 9
|
|
```
|
|
|
|
By default, returns an hour from 1 to 12 for a standard [12-hour clock][12h].
|
|
|
|
Can optionally specify a full twenty-four.
|
|
|
|
```js
|
|
chance.hour({twentyfour: true});
|
|
=> 21
|
|
```
|
|
|
|
This will return an hour from 1 to 24.
|
|
|
|
[12h]: https://en.wikipedia.org/wiki/12-hour_clock
|