File: year.md

package info (click to toggle)
node-chance 2.2.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,612 kB
  • sloc: javascript: 16,572; makefile: 4
file content (31 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (2)
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
28
29
30
31
# year

```js
// usage
chance.year()
chance.year({min: 1900, max: 2100})
```

Generate a random year

```js
chance.year();
=> '2053'
```

By default, min is the current year and max is 100 years greater than min.

This is returned as a string. If for some reason you need it numeric, just
parse it:

```js
parseInt(chance.year());
=> 2042
```

Optionally specify min, max, or both to limit the range.

```js
chance.year({min: 1900, max: 2100});
=> '1983'
```