JavaScript: Math.PI Property - TechOnTheNet

TechOnTheNet Logo
  1. Home
  2. JavaScript
totn JavaScript JavaScript: Math.PI property

This JavaScript tutorial explains how to use the math property called Math.PI with syntax and examples.

Description

In JavaScript, Math.PI is a math property that is used to return the mathematical constant π (pi). Because Math.PI is a property of the Math object, it must be invoked through the placeholder object called Math.

Syntax

In JavaScript, the syntax for the Math.PI property is:

Math.PI;

Parameters or Arguments

There are no parameters or arguments for the Math.PI property.

Returns

The Math.PI property returns the mathematical constant π (pi) which has an approximate value of 3.141592653589793.

Note

  • The Math.PI property is a property of the Math object and not a math function. However, we have included the Math.PI property within our JS Math Functions section because you will most likely use this property in conjunction with the Math functions found in this section.

Example

Let's take a look at an example of how to use the Math.PI property in JavaScript.

For example:

console.log(Math.PI);

In this example, we have invoked the Math.PI property using the Math class.

We have written the output of the Math.PI property to the web browser console log, for demonstration purposes, to show what the Math.PI property returns.

The following will be output to the web browser console log:

3.141592653589793

In this example, the Math.PI property returned a value of 3.141592653589793 which is the value of the mathematical constant π or pi.

previousNEXT: pownext Share on:

Databases

  • SQL
  • Oracle / PLSQL
  • SQL Server
  • MySQL
  • MariaDB
  • PostgreSQL
  • SQLite

MS Office

  • Excel
  • Access
  • Word

Web Development

  • HTML
  • CSS
  • JavaScript
  • Color Picker

Programming

  • C Language

More

  • ASCII
  • Unicode
  • Linux
  • UNIX
  • Techie Humor
clear filter right caret

JS Basics

  • Comments
  • Console Log
  • Literals
  • Operators
  • Reserved Words
  • Variables
right caret

JS Loops/Conditionals

  • break
  • continue
  • do-while loop
  • for loop
  • for-in loop
  • if-else
  • switch
  • while loop
right caret

JS String Methods

  • anchor
  • big
  • blink
  • bold
  • charAt
  • charCodeAt
  • codePointAt
  • concat
  • endsWith
  • fixed
  • fontcolor
  • fontsize
  • fromCharCode
  • fromCodePoint
  • includes
  • indexOf
  • italics
  • lastIndexOf
  • length
  • link
  • localeCompare
  • match
  • normalize
  • padEnd
  • padStart
  • repeat
  • replace
  • search
  • slice
  • small
  • split
  • startsWith
  • strike
  • sub
  • substr
  • substring
  • sup
  • toLocaleLowerCase
  • toLocaleUpperCase
  • toLowerCase
  • toString
  • toUpperCase
  • trim
  • trimEnd
  • trimStart
  • valueOf
right caret

JS Number Methods

  • EPSILON
  • isFinite
  • isInteger
  • isNaN
  • isSafeInteger
  • MAX_SAFE_INTEGER
  • MAX_VALUE
  • MIN_SAFE_INTEGER
  • MIN_VALUE
  • NaN
  • NEGATIVE_INFINITY
  • parseFloat
  • parseInt
  • POSITIVE_INFINITY
  • toExponential
  • toFixed
  • toLocaleString
  • toPrecision
  • toString
  • valueOf
down caret

JS Math Functions

  • abs
  • acos
  • acosh
  • asin
  • asinh
  • atan
  • atan2
  • atanh
  • cbrt
  • ceil
  • clz32
  • cos
  • cosh
  • E
  • exp
  • expm1
  • floor
  • fround
  • hypot
  • imul
  • LN10
  • LN2
  • log
  • log10
  • LOG10E
  • log1p
  • log2
  • LOG2E
  • max
  • min
  • PI
  • pow
  • random
  • round
  • sign
  • sin
  • sinh
  • sqrt
  • SQRT1_2
  • SQRT2
  • tan
  • tanh
  • trunc
right caret

JS Array Methods

  • concat
  • copyWithin
  • entries
  • every
  • fill
  • filter
  • find
  • findIndex

Home | About Us | Contact Us | Testimonials | Donate

While using this site, you agree to have read and accepted our Terms of Service and Privacy Policy.

Copyright © 2003-2026 TechOnTheNet.com. All rights reserved.

Tag » Approximation Of Pi Javascript