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.
17 lines
236 B
17 lines
236 B
4 weeks ago
|
# 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.
|