1.Javascript :金額表示
前に¥サインを付ける
2.code
toLocaleString(‘ja-JP’, {style: “currency”, currency: “JPY”})を使用してみる
const amount = '1234567'; console.log(parseInt(amount).toLocaleString('ja-JP', {style: "currency", currency: "JPY"});
3.結果
¥1,234,567
4.マイナスの場合、結果の表示がおかしい
amount = ‘-3300’;
-¥3,300
5.結局 {style: “currency”, currency: “JPY”}のオプションは使えない