Currency conversion

Do you do a lot of amount calculation and suddenly realize that is js $1.30 * 26 gives you a result of 33.800000004. Try this...


 var num1="1.3"; var num2="26"; var cur_num=parseFloat(num1)*parseFloat(num2); var currencynumber=convertCurr(cur_num); function convertCurr(cur_num) { var temp_num=Math.round(cur_num*100); var str_num=new String(temp_num); var numlen=str_num.length; var int_num=str_num.substr(1,numlen-2); var dec_num=str_num.substr(numlen-2,2); return(int_num+"."+dec_num); }

This was first published in December 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.