Сообщение от рони
|
RoyalHunt,
function fixAmount(amount) {
if(typeof amount == "string") amount = amount.replace(',','.');
return parseFloat(amount)||-1;
}
|
Можно уточнить почему не работает такой вариант, который вроде как является идентичным:
function fixAmount(amount) {
if(amount === '') amount = amount.replace(',','.');
return parseFloat(amount)||-1;
}