input : -81.82637799999999(14 numbers after decimal point)
output :-81.8263779999999(13 numbers after decimal point)
How can I implement this using javascript?
Advertisement
Answer
Well try this. See if it works for you
JavaScript
x
7
1
var x = -81.82637799999999;
2
x = x.toString(); // convert to string
3
alert(x.length);
4
x = x.substring(0, x.length - 1); // cut out last character
5
alert(x.length);
6
x = parseFloat(x); // convert it back to float
7