Hi joefawcett,
In my application(ASP.net), the user will be entering the numeric values(like 123456789012345.09) in textbox, in some events(like onblur of textbox, onClick event on button) i will be capturing the textbox value which will be in string format and will convert to numeric type using parseFloat function to do some calculation.
i will be dealing with maximum of 8 decimal points.
also parseFloat("123456789012345.229") will return 123456789012345.23
parseFloat("123456789012345.203") will return 123456789012345.2
as per your suggestion, how we can multiply the string with 100 or other in javascript?
Need your help to solve this issue.
|