TheConeHead
Programmer
How would I round:
1.236666666
to:
1.24
Thanks!
1.236666666
to:
1.24
Thanks!
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.
<script language="javascript"><!--
var theNum = 1.23666666;
alert( theNum.toFixed(2) );
//--></script>