Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
x = parseFloat(0.1) + parseFloat(0.2);
x = x * 10;
x = Math.round(x);
x = x/10;
//or, in one step:
x = Math.round((parseFloat(0.1) + parseFloat(0.2))*10)/10