Home > フロート数値


JavaScriptで価格をフォーマットする方法

toLocaleString()メソッドを使用する方法:function formatPrice(price) { return price.toLocaleString('ja-JP', { style: 'currency', currency: 'JPY' }); } var price = 1234.56; var formattedPrice = formatPrice(price); console.log(formattedPrice); // 結果: ¥1,234.56>>More