**Newbie Need Help** with Math.object

D

Dobie

I need to know if there's a Math.object that will
make a # such as 123.4567 and round it to the
nearest 1/100. To make the # be 123.46. I have
seen Math.floor, Math.round, Math.random and
other objects. But none will do what I need.
Help ???
The only reason I need to do this is because I have
a list of products with their prices. And when you
enter the quantity amount, that # gets multiplied
by the price. And on some of the prices, a long
integer gets returned. And it would be nice to have
a price of $123.46 instead of $123.4567.

TIA,
Dobie
 
D

DU

Dobie said:
I need to know if there's a Math.object that will
make a # such as 123.4567 and round it to the
nearest 1/100. To make the # be 123.46. I have
seen Math.floor, Math.round, Math.random and
other objects. But none will do what I need.
Help ???
The only reason I need to do this is because I have
a list of products with their prices. And when you
enter the quantity amount, that # gets multiplied
by the price. And on some of the prices, a long
integer gets returned. And it would be nice to have
a price of $123.46 instead of $123.4567.

TIA,
Dobie

Best is to always try to find answers by yourself in documentation and
references or in archives posts and threads of this newsgroup. Your
question was answered before. There is a FAQENTRY on this

http://jibbering.com/faq/#FAQ4_6

Also:

toPrecision([precision])

Parameters: precision
An integer specifying the number of digits after the decimal point.

http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/number.html#1201389



toFixed
Returns a string representing the Number object in fixed-point notation.

Syntax
toFixed([fractionDigits])

Parameters
fractionDigits

An integer specifying the number of digits after the decimal point.
Defaults to zero.
http://devedge.netscape.com/library/manuals/2000/javascript/1.5/reference/number.html#1200964

DU
--
Javascript and Browser bugs:
http://www10.brinkster.com/doctorunclear/
- Resources, help and tips for Netscape 7.x users and Composer
- Interactive demos on Popup windows, music (audio/midi) in Netscape 7.x
http://www10.brinkster.com/doctorunclear/Netscape7/Netscape7Section.html
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top