mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-08 12:05:58 +08:00
15 lines
208 B
Markdown
15 lines
208 B
Markdown
# timestamp
|
|
|
|
```js
|
|
// usage
|
|
chance.timestamp()
|
|
```
|
|
|
|
Generate a random timestamp. This is a standard Unix time, so a random number of
|
|
seconds since January 1, 1970.
|
|
|
|
```js
|
|
chance.timestamp();
|
|
=> 576556683
|
|
```
|