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.
26 lines
321 B
26 lines
321 B
4 months ago
|
# age
|
||
|
|
||
|
```js
|
||
|
// usage
|
||
|
chance.age()
|
||
|
chance.age({ type: 'child' })
|
||
|
```
|
||
|
|
||
|
Generate a random age
|
||
|
|
||
|
```js
|
||
|
chance.age();
|
||
|
=> 45
|
||
|
```
|
||
|
|
||
|
Default range is between 1 and 120
|
||
|
|
||
|
Optionally specify one of a handful of enumerated age types:
|
||
|
|
||
|
```js
|
||
|
chance.age({type: 'child'});
|
||
|
=> 9
|
||
|
```
|
||
|
|
||
|
Allowed types are: `child`, `teen`, `adult`, `senior`
|