I have prepared a small jsfiddle here: jsfiddle.net/v8s176p2
Basically I want to increment and decrement observable in steps of 0.1 But because of number representation and precision issues, numbers are sometimes displayed as:1.3200000000000003...etc, tu I want them to only be displayed and have values with 1 decimal point
How would I code this exact same functionality in knockout.js, but by not using floating point. So my starting value is 10 and in HTML it's displayed as 1, if I decrmenet it (10-1 = 9) in html it's displayed as 0.9? This is probably better approach for my application, since I get this data from a server on embedded device, so it would be better to recieve the number as 200 and then divide it by 10, but how to set this up in ko.js in my example fiddle?