mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-08 03:55:53 +08:00
393 B
393 B
hour
// usage
chance.hour()
chance.hour({twentyfour: true})
Generate a random hour
chance.hour();
=> 9
By default, returns an hour from 1 to 12 for a standard 12-hour clock.
Can optionally specify a full twenty-four.
chance.hour({twentyfour: true});
=> 21
This will return an hour from 1 to 24.