Resolved! Javascript: Convert string to number but keep decimal
I have a currency field that stores a value in this format: 'USD;1234.05' so it's storing as a string. I am splitting on ; to just get the number returned (as a string).var amnt = newValue.split(/;/); My question is now that the number is a string (i...