Muts
7 years agoNew Contributor
Javascript toLocaleString
I have:-
var numb = 1234.5678;
var frmt = numb.toLocaleString('de-DE', { style: 'currency', currency: 'EUR',minimumFractionDigits: 2, maximumFractionDigits: 2});
I expect frmt to be 1.234,57 €
But frmt is "1234.5678" - just a string version of the float. Does TC support toLocaleString?