spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / programming / javascript / diaries / 14

[next]

Subject Matter Expert - Managed Services (PA)
Next Step Systems
US-PA-Wayne

Justtechjobs.com Post A Job | Post A Resume
Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs


The JavaScript Diaries: Part 14 - The Math Object

  1. Introduction
  2. Data Types & Variables
  3. Operators
  4. Functions
  5. Conditional Statements and Loops
  6. Objects
  7. Browser-Based Objects
  8. Window Methods
  9. Window Event Handlers
  10. Navigator, Screen, History and Location Objects
  11. Arrays: Part 1 - Introduction
  12. Arrays: Part 2 - Multiple Array Types
  13. Arrays: Part 3 - Array Properties and Methods
  14. The Math Object
  15. The Date Object

By 

The Math object is a predefined JavaScript object used to perform mathematical operations. It's also used to obtain the values of predefined mathematical constants, i.e., Pi (π) or the square root of a number. In addition, it can also be used to generate random numbers.

It's important to remember that the Math object begins with an uppercase "M." If a lower case "m" is used, the JavaScript interpreter will not recognize it as an object.

(Note: We won't cover all of these properties and methods in detail as some of them are a little more complicated than what we are dealing with right now.)

Properties

Name Description
E The value of Euler's constant, approximately 2.718
LN2 The natural logarithm of 2, approximately 0.693
LN10 The natural logarithm of 10, approximately 2.302
LOG2E The base 2 logarithm of E, approximately 1.442
LOG10E The base 10 logarithm of E, approximately 0.434
PI (π) The ratio of the circumference of a circle to its diameter, approximately 3.14159
SQRT1_2 Square root of 1/2; equivalently, 1 over the square root of 2, approximately 0.707
SQRT2 Square root of 2, approximately 1.414

Using Pi

You can use this script to calculate the circumference of a circle using Pi by entering the radius:

Let's see what we did in this script.

  1. First, we created a function called circum.
  2. Then, we declared the variable radius and gave it the value of the results of a prompt box, which obtains the size of the radius from the user.
  3. Next, we declared the variable circle and gave it the formula which will calculate the actual circumference of the circle, based on the information given to the radius variable.
  4. Finally, an alert box displays the results of the calculation.

You would then add this in the body section of the page in order to call the script above:

Let's take a look at the JavaScript math methods and see what we can do with them.

home / programming / javascript / diaries / 14

[next]

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint

URL: