Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In HTML Math method floor may be used round a number to a specific decimal place. For example, the statement y = Math.floor( x *

In HTML

Math method floor may be used round a number to a specific decimal place. For example, the statement

y = Math.floor( x * 10 + .5 ) / 10;

rounds x to the tenths position ( the first position to the right of the decimal point). the statement

y = Math.floor ( x * 100 + .5) / 100;

rounds x to the hundredths position. Writhe a scritp that defines four functions to round a number x in various ways:

a) roundToInteger ( number)

b) roundToTenths ( number )

c) roundToHundredths( number )

d) roundToThousandths( number)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Write formal and informal proposals.

Answered: 1 week ago

Question

Describe the components of a formal report.

Answered: 1 week ago

Question

Write formal and informal reports.

Answered: 1 week ago