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.
25 lines
380 B
25 lines
380 B
# tv
|
|
|
|
```js
|
|
// usage
|
|
chance.tv()
|
|
chance.tv({side: 'west'})
|
|
```
|
|
|
|
Generate a TV station call sign. This is an alias for `radio()` since they both
|
|
follow the same rules.
|
|
|
|
```js
|
|
chance.radio();
|
|
=> 'WXTY'
|
|
```
|
|
|
|
Optionally specify a side of the Mississippi River to limit stations to that side.
|
|
|
|
```js
|
|
chance.radio({side: 'west'});
|
|
=> 'KCYL'
|
|
|
|
chance.radio({side: 'west'});
|
|
=> 'KQDV'
|
|
```
|
|
|