消除我特牛
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.

31 lines
471 B

4 weeks ago
# dollar
```js
// usage
chance.dollar()
chance.dollar({max: 250})
```
<p class="pullquote" data-pullquote="Dolla, dolla, bill ya'll" markdown="1"></p>
Return a random dollar amount.
```js
chance.dollar();
=> "$2560.27"
chance.dollar();
=> "$750.99"
```
By default returns dollar amount no larger than 10000. Optionally specify
the max to make it larger (or smaller).
```js
chance.dollar({max: 20});
=> "$15.23"
chance.dollar({max: 10000000})
=> "$5051205.49"
```