このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
プログラム言語:javascript_jquery:数値を3桁でカンマ区切り_number_format [2019/04/04 10:38] yusuke_komori |
プログラム言語:javascript_jquery:数値を3桁でカンマ区切り_number_format [2019/10/25 11:44] (現在) humolife |
||
---|---|---|---|
行 1: | 行 1: | ||
====== 数値を3桁でカンマ区切り(number_format) ====== | ====== 数値を3桁でカンマ区切り(number_format) ====== | ||
+ | ===== Intl.NumberFormat を使う方法 ===== | ||
< | < | ||
< | < | ||
- | var price = 123456789; | + | let numberFormat = new Intl.NumberFormat(' |
- | console.log(price); | + | let price = 123456789; |
+ | console.log(numberFormat.format(price)); | ||
+ | </ | ||
+ | </ | ||
+ | ===== 自作関数を使う方法 ===== | ||
+ | < | ||
+ | < | ||
+ | let price = 123456789; | ||
console.log(number_format(price)); | console.log(number_format(price)); | ||