# currency(value, [removeTrailingZeros], [symbol]) ⇒ string

格式化数字为货币格式

Kind: global function

Param Type Default Description
value number | string 原始数据
[removeTrailingZeros] boolean false 是否删除末尾补位的0,如“¥5.00”会得到“¥5”
[symbol] string "''" 是否输出带符号的货币数值

Example

currency(15.6);
// => 15.60

currency(15.6, true);
// => 15.6

currency(15.6, false, '¥');
// => ¥15.60