mirror of
https://gitee.com/bimuziyan/ccc-obfuscated-code.git
synced 2026-05-10 23:18:52 +08:00
17 lines
236 B
Markdown
17 lines
236 B
Markdown
# weekday
|
|
|
|
```js
|
|
// usage
|
|
chance.weekday()
|
|
chance.weekday({weekday_only: true})
|
|
```
|
|
|
|
Return a weekday
|
|
|
|
```js
|
|
chance.weekday();
|
|
=> 'Tuesday'
|
|
```
|
|
|
|
By default, weekday_only is false. If set to true it will never return Saturday or Sunday.
|