/ Published in: JavaScript
Expand |
Embed | Plain Text
Number.prototype.toFixed=function(x) { var temp=this; temp=Math.round(temp*Math.pow(10,x))/Math.pow(10,x); return temp; }
You need to login to post a comment.
