Reputation: 1
Number 56675.456
56675.456
I want to format this number with Format : {0:$###.##}
{0:$###.##}
using String.localeFormat() in JQuery
String.localeFormat()
Expected Result: $56675.46
$56675.46
Upvotes: 0
Views: 1340
Reputation: 144729
function convert(num) { return "$" + (num.toFixed(2)); } convert(56675.456)
demo
Upvotes: 1