I need floating number output exactly like number_format function in php.
Javascript Code
Math.round(totalCredit).toFixed(2)
PHP Code
echo number_format(22212 , 2);
above code return me 22,212.00
and this is exactly I want in js.
Expected output
22.212