summaryrefslogtreecommitdiff
path: root/src/node_modules/chance/docs/web/profession.md
blob: a1bea162705435109f12c62f296d6a75d4b8e4de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# profession

```js
// usage
chance.profession()
chance.profession({rank: true})
```

Return a random profession. Rank is false by default.

```js
chance.profession()
=> 'Software Test Engineer'
```

Optionally set rank as true get rank with profession.

```js
chance.profession({rank: true})
=> 'Junior Supply Chain Director'
```