toLocaleString的隐藏用法

2022-01-13  本文已影响0人  前端小白的摸爬滚打

对于 toLocaleString 我们最常使用的还是将日期对象转换为字符串。新增的参数 locales 和 options 使程序能够指定使用哪种语言格式化规则,允许定制该方法的表现

语法

obj.toLocaleString([locales [, options]])

哪些类中包含这个 API

参数

示例

其实我们可以发现 toLocaleString 在使用到数字上是可以简化一些我们在数字转换方面的操作:

  1. 数字转化为百分比
  2. 数字转换为货币
  3. 逗号分割

  1. ❗️ 将数字每三位进行逗号分割
const num = 10001;
num.toLocaleString(); // '1,001'
  1. ❗️ 将数字转换为货币
const cur = 100000001111;
cur.toLocaleString("zh", { style: "currency", currency: "CNY" }); // '¥100,000,001,111.00'
  1. ❗️ 将数字转换为百分比
const percent = 0.12;
percent.toLocaleString("zh", { style: "percent" }); // '12%'
  1. 将冲数字/字符串的数组使用逗号拼接,类似于数组的 toString/join 操作
const arr = [1, 2, 3];
arr.toLocaleString(); // '1,2,3'
上一篇下一篇

猜你喜欢

热点阅读