dollar
// usage
randBox.dollar()
randBox.dollar({max: 250})
Return a random dollar amount.
randBox.dollar();
=> "$2560.27"
randBox.dollar();
=> "$750.99"
By default returns dollar amount no larger than 10000. Optionally specify the max to make it larger (or smaller).
randBox.dollar({max: 20});
=> "$15.23"
randBox.dollar({max: 10000000})
=> "$5051205.49"
Last updated on: