ユーザ用ツール

サイト用ツール


プログラム言語:javascript_jquery:数値を3桁でカンマ区切り_number_format

差分

このページの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 を使う方法 =====
 <code> <code>
 <script> <script>
-var price = 123456789; +let numberFormat = new Intl.NumberFormat('ja'
-console.log(price);+let price = 123456789; 
 +console.log(numberFormat.format(price)); 
 +</script> 
 +</code> 
 +===== 自作関数を使う方法 ===== 
 +<code> 
 +<script> 
 +let price = 123456789;
 console.log(number_format(price)); console.log(number_format(price));
  
プログラム言語/javascript_jquery/数値を3桁でカンマ区切り_number_format.1554341903.txt.gz · 最終更新: 2019/04/04 10:38 by yusuke_komori