|
From: Larrythedesigner on 23 Apr 2008 16:10 Thank You Doug! I appreciate your help. That did the trick. I am still learning and this helped me understand some of what I learned. Thanks, Larry "Doug Gunnoe" <douggunnoe(a)gmail.com> wrote in message news:8d195c89-548d-4486-8ef5-c04992bb57c4(a)34g2000hsh.googlegroups.com... > On Apr 23, 9:33 am, "Larrythedesigner" <anonymous(a)no_spam.info> wrote: >> Thanks, Doug. >> >> Admittedly, I am inept with javascript and in over my head on this simple >> little project. I don't know how to integrate the math.round into my >> script. Could you or someone help me place it where it needs to be? >> >> Any helps is very appreciated. Thanks in advance. >> >> Larry > > Sure. And you might want to check out what Rob was saying about > checking the values, etc. Like he says, you don't want to divide by > zero. Also, JavaScript can be tricky when doing stuff like this > because of converting values between strings and numbers. But I see > you were using the parseFloat function so you seem to be headed in the > right direction in that regard. > > Anyway, to your question, you would use it something like this > > var tripcost = tripDistance/mpg*perGallon; > d.value = Math.round(tripcost * 100)/100; > > > > > > >
From: Dr J R Stockton on 23 Apr 2008 15:29 In comp.lang.javascript message <898cd037-3c3d-4346-9d66-5725a1f22a31(a)i7 6g2000hsf.googlegroups.com>, Tue, 22 Apr 2008 20:18:20, Doug Gunnoe <douggunnoe(a)gmail.com> posted: > >Math.round(x * 100)/100 > >the following alerts 64.17 >alert(Math.round(64.166666666 * 100)/100); Those who fail to read the FAQ before posting commonly demonstrate ineptness. Evidently you have not considered the difference between rounding to a multiple 0f 0.01 and rounding to two decimals. Currency outputs should be rounded to the nearest penny or pound (or foreign equivalents), not to the nearest florin (unless large, of course). -- (c) John Stockton, nr London, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME. Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links. Proper <= 4-line sig. separator as above, a line exactly "-- " (SonOfRFC1036) Do not Mail News to me. Before a reply, quote with ">" or "> " (SonOfRFC1036)
From: Dr J R Stockton on 24 Apr 2008 11:44 In comp.lang.javascript message <8d195c89-548d-4486-8ef5-c04992bb57c4(a)34 g2000hsh.googlegroups.com>, Wed, 23 Apr 2008 12:30:31, Doug Gunnoe <douggunnoe(a)gmail.com> posted: > But I see >you were using the parseFloat function so you seem to be headed in the >right direction in that regard. Function parseFloat is not needed in that code. FAQ 4.21. -- (c) John Stockton, nr London, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME. Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links. Proper <= 4-line sig. separator as above, a line exactly "-- " (SonOfRFC1036) Do not Mail News to me. Before a reply, quote with ">" or "> " (SonOfRFC1036)
From: Dr J R Stockton on 24 Apr 2008 13:56 In comp.lang.javascript message <653f34c9-01a2-4535-b296-7e41d21d52d1(a)e3 9g2000hsf.googlegroups.com>, Wed, 23 Apr 2008 19:11:02, Doug Gunnoe <douggunnoe(a)gmail.com> posted: >By the way, I will never, ever, ever, ever, never read the shitty FAQ. >Never. Never, ever, never. Then, if you continue to post here what you naively think are answers, you will continue to demonstrate your childish obstinacy, and it will continue to be remarked upon. Your mere ignorance and lack of understanding are not necessarily to be ashamed of, provided that obvious steps to remedy them are promptly taken. -- (c) John Stockton, nr London UK. ???@merlyn.demon.co.uk Turnpike v6.05 MIME. Web <URL:http://www.merlyn.demon.co.uk/> - FAQish topics, acronyms, & links. Check boilerplate spelling -- error is a public sign of incompetence. Never fully trust an article from a poster who gives no full real name.
First
|
Prev
|
Pages: 1 2 Prev: JS menu/iframe conflict Next: getting computed style for Img width and height |