blob: 02e06d0f57957f23c2abb1e7c17d38f9990c8652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# 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
|