Hi,
I have a number in javascript, e.g. 556633.
How can I convert this to be £5566.33
Thanks Jon
Hi,
I have a number in javascript, e.g. 556633.
How can I convert this to be £5566.33
Thanks Jon
Try this:
var num = 10;
var result = num.toFixed(2); // result will equal 10.00