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.
26 lines
359 B
26 lines
359 B
4 months ago
|
# suffix
|
||
|
|
||
|
```js
|
||
|
// usage
|
||
|
chance.suffix()
|
||
|
chance.suffix({ full: true })
|
||
|
```
|
||
|
|
||
|
Generate a random name suffix
|
||
|
|
||
|
```js
|
||
|
chance.suffix();
|
||
|
=> 'Sr.'
|
||
|
```
|
||
|
|
||
|
By default, returns the shorter version.
|
||
|
|
||
|
Optionally get back the full version.
|
||
|
|
||
|
```js
|
||
|
chance.suffix({ full: true });
|
||
|
=> 'Juris Doctor'
|
||
|
```
|
||
|
|
||
|
*To maintain legacy support, this also responds to chance.name_suffix().*
|