SlideShare a Scribd company logo
In –Built Math functions
in Java script
Math.abs(x): Returns the absolute value of a number x.
 Math.abs(-5); // Returns 5
Math.ceil(x): Returns the smallest integer greater than or equal to a number x.
Math.ceil(4.3); // Returns 5
Math.floor(x): Returns the largest integer less than or equal to a number x.
Math.floor(4.7); // Returns 4
Math.round(x): Returns the value of a number x rounded to the nearest integer.
 Math.round(4.5); // Returns 5
Math.max(x1, x2, ...): Returns the largest of zero or more numbers.
Math.max(10, 5, 8); // Returns 10
Math.min(x1, x2, ...): Returns the smallest of zero or more
numbers.
Math.min(10, 5, 8); // Returns 5
Math.pow(x, y): Returns the base to the exponent power, that is, x raised to the power y.
 Math.pow(2, 3); // Returns 8
Math.sqrt(x): Returns the square root of a number x.
Math.sqrt(9); // Returns 3
Math.random(): Returns a random floating-point number between
0 (inclusive) and 1 (exclusive).
Math.random(); // Returns a random number between 0 and 1
Math.PI: A property representing the ratio of the
circumference of a circle to its diameter,
approximately equal to 3.14159.
 Math.PI; // Returns 3.141592653589793
<body>
<h1>JavaScript Math Functions</h1>
<p id="output"></p>
<script>
// Using Math functions
document.getElementById("output").innerHTML +=
"<strong>Math.abs(-5):</strong> " + Math.abs(-5) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.ceil(4.3):</strong> " + Math.ceil(4.3) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.floor(4.7):</strong> " + Math.floor(4.7) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.round(4.5):</strong> " + Math.round(4.5) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.max(10, 5, 8):</strong> " + Math.max(10, 5, 8) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.min(10, 5, 8):</strong> " + Math.min(10, 5, 8) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.pow(2, 3):</strong> " + Math.pow(2, 3) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.sqrt(9):</strong> " + Math.sqrt(9) + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.random():</strong> " + Math.random() + "<br>";
document.getElementById("output").innerHTML +=
"<strong>Math.PI:</strong> " + Math.PI + "<br>";
</script>
</body>
</html>
Ad

More Related Content

Similar to In Built Math functions in java script.. (20)

Recursion Lecture in Java
Recursion Lecture in JavaRecursion Lecture in Java
Recursion Lecture in Java
Raffi Khatchadourian
 
TI1220 Lecture 6: First-class Functions
TI1220 Lecture 6: First-class FunctionsTI1220 Lecture 6: First-class Functions
TI1220 Lecture 6: First-class Functions
Eelco Visser
 
Matlab functions
Matlab functionsMatlab functions
Matlab functions
pramodkumar1804
 
Matlab cheatsheet
Matlab cheatsheetMatlab cheatsheet
Matlab cheatsheet
lokeshkumer
 
Composition birds-and-recursion
Composition birds-and-recursionComposition birds-and-recursion
Composition birds-and-recursion
David Atchley
 
Statistics lab 1
Statistics lab 1Statistics lab 1
Statistics lab 1
University of Salerno
 
20170509 rand db_lesugent
20170509 rand db_lesugent20170509 rand db_lesugent
20170509 rand db_lesugent
Prof. Wim Van Criekinge
 
INFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docx
INFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docxINFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docx
INFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docx
carliotwaycave
 
Declarative Thinking, Declarative Practice
Declarative Thinking, Declarative PracticeDeclarative Thinking, Declarative Practice
Declarative Thinking, Declarative Practice
Kevlin Henney
 
Short Reference Card for R users.
Short Reference Card for R users.Short Reference Card for R users.
Short Reference Card for R users.
Dr. Volkan OBAN
 
Reference card for R
Reference card for RReference card for R
Reference card for R
Dr. Volkan OBAN
 
@ R reference
@ R reference@ R reference
@ R reference
vickyrolando
 
R command cheatsheet.pdf
R command cheatsheet.pdfR command cheatsheet.pdf
R command cheatsheet.pdf
Ngcnh947953
 
Seminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mmeSeminar PSU 10.10.2014 mme
Seminar PSU 10.10.2014 mme
Vyacheslav Arbuzov
 
MATLAB
MATLABMATLAB
MATLAB
MOHSIN GULAB TANWARI
 
Introduction to R
Introduction to RIntroduction to R
Introduction to R
University of Salerno
 
Functional programming ii
Functional programming iiFunctional programming ii
Functional programming ii
Prashant Kalkar
 
What's New In C# 7
What's New In C# 7What's New In C# 7
What's New In C# 7
Paulo Morgado
 
Solutions for Problems: Engineering Optimization by Ranjan Ganguli
Solutions for Problems: Engineering Optimization by Ranjan GanguliSolutions for Problems: Engineering Optimization by Ranjan Ganguli
Solutions for Problems: Engineering Optimization by Ranjan Ganguli
industriale82
 
Data transformation-cheatsheet
Data transformation-cheatsheetData transformation-cheatsheet
Data transformation-cheatsheet
Dieudonne Nahigombeye
 
TI1220 Lecture 6: First-class Functions
TI1220 Lecture 6: First-class FunctionsTI1220 Lecture 6: First-class Functions
TI1220 Lecture 6: First-class Functions
Eelco Visser
 
Matlab cheatsheet
Matlab cheatsheetMatlab cheatsheet
Matlab cheatsheet
lokeshkumer
 
Composition birds-and-recursion
Composition birds-and-recursionComposition birds-and-recursion
Composition birds-and-recursion
David Atchley
 
INFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docx
INFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docxINFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docx
INFORMATIVE ESSAYThe purpose of the Informative Essay assignme.docx
carliotwaycave
 
Declarative Thinking, Declarative Practice
Declarative Thinking, Declarative PracticeDeclarative Thinking, Declarative Practice
Declarative Thinking, Declarative Practice
Kevlin Henney
 
Short Reference Card for R users.
Short Reference Card for R users.Short Reference Card for R users.
Short Reference Card for R users.
Dr. Volkan OBAN
 
R command cheatsheet.pdf
R command cheatsheet.pdfR command cheatsheet.pdf
R command cheatsheet.pdf
Ngcnh947953
 
Functional programming ii
Functional programming iiFunctional programming ii
Functional programming ii
Prashant Kalkar
 
Solutions for Problems: Engineering Optimization by Ranjan Ganguli
Solutions for Problems: Engineering Optimization by Ranjan GanguliSolutions for Problems: Engineering Optimization by Ranjan Ganguli
Solutions for Problems: Engineering Optimization by Ranjan Ganguli
industriale82
 

More from anjanasharma77573 (20)

What is tidyverse in R languages and different packages
What is tidyverse in R languages and different packagesWhat is tidyverse in R languages and different packages
What is tidyverse in R languages and different packages
anjanasharma77573
 
basic of data science and big data......
basic of data science and big data......basic of data science and big data......
basic of data science and big data......
anjanasharma77573
 
What is big data and 5'v of big data....
What is big data and 5'v of big data....What is big data and 5'v of big data....
What is big data and 5'v of big data....
anjanasharma77573
 
Basic of data and different type of data
Basic of data and different type of dataBasic of data and different type of data
Basic of data and different type of data
anjanasharma77573
 
What is Big Data , 5'v of BIG DATA and Challenges
What is Big Data , 5'v of BIG DATA and ChallengesWhat is Big Data , 5'v of BIG DATA and Challenges
What is Big Data , 5'v of BIG DATA and Challenges
anjanasharma77573
 
Basic of data science, and type of data.
Basic of data science, and type of data.Basic of data science, and type of data.
Basic of data science, and type of data.
anjanasharma77573
 
Role of Infogram, power bi and google charts
Role of Infogram, power bi and google chartsRole of Infogram, power bi and google charts
Role of Infogram, power bi and google charts
anjanasharma77573
 
DATA VISUALIZATION TOOLS e.g Power bi..
DATA VISUALIZATION TOOLS e.g  Power bi..DATA VISUALIZATION TOOLS e.g  Power bi..
DATA VISUALIZATION TOOLS e.g Power bi..
anjanasharma77573
 
type of vector data in vectors and geometries
type of vector data in vectors and geometriestype of vector data in vectors and geometries
type of vector data in vectors and geometries
anjanasharma77573
 
Introduction to vectors and geometry - ..
Introduction to vectors and geometry - ..Introduction to vectors and geometry - ..
Introduction to vectors and geometry - ..
anjanasharma77573
 
type of vector data in vectors and geometry
type of vector data in vectors and geometrytype of vector data in vectors and geometry
type of vector data in vectors and geometry
anjanasharma77573
 
Introduction to vectors and geometry -....
Introduction to vectors and geometry -....Introduction to vectors and geometry -....
Introduction to vectors and geometry -....
anjanasharma77573
 
basic of SQL constraints in database management system
basic of SQL constraints in database management systembasic of SQL constraints in database management system
basic of SQL constraints in database management system
anjanasharma77573
 
SQL subqueries in database management system
SQL subqueries in database management systemSQL subqueries in database management system
SQL subqueries in database management system
anjanasharma77573
 
practices of C programming function concepts
practices of C programming function conceptspractices of C programming function concepts
practices of C programming function concepts
anjanasharma77573
 
Practice of c PROGRAMMING logics and concepts
Practice of c PROGRAMMING logics and conceptsPractice of c PROGRAMMING logics and concepts
Practice of c PROGRAMMING logics and concepts
anjanasharma77573
 
programming concepts with c ++..........
programming concepts with c ++..........programming concepts with c ++..........
programming concepts with c ++..........
anjanasharma77573
 
basic of c programming practicals.......
basic of c programming practicals.......basic of c programming practicals.......
basic of c programming practicals.......
anjanasharma77573
 
Detailed concept of function in c programming
Detailed concept of function  in c programmingDetailed concept of function  in c programming
Detailed concept of function in c programming
anjanasharma77573
 
Implemintation of looping programs......
Implemintation of looping programs......Implemintation of looping programs......
Implemintation of looping programs......
anjanasharma77573
 
What is tidyverse in R languages and different packages
What is tidyverse in R languages and different packagesWhat is tidyverse in R languages and different packages
What is tidyverse in R languages and different packages
anjanasharma77573
 
basic of data science and big data......
basic of data science and big data......basic of data science and big data......
basic of data science and big data......
anjanasharma77573
 
What is big data and 5'v of big data....
What is big data and 5'v of big data....What is big data and 5'v of big data....
What is big data and 5'v of big data....
anjanasharma77573
 
Basic of data and different type of data
Basic of data and different type of dataBasic of data and different type of data
Basic of data and different type of data
anjanasharma77573
 
What is Big Data , 5'v of BIG DATA and Challenges
What is Big Data , 5'v of BIG DATA and ChallengesWhat is Big Data , 5'v of BIG DATA and Challenges
What is Big Data , 5'v of BIG DATA and Challenges
anjanasharma77573
 
Basic of data science, and type of data.
Basic of data science, and type of data.Basic of data science, and type of data.
Basic of data science, and type of data.
anjanasharma77573
 
Role of Infogram, power bi and google charts
Role of Infogram, power bi and google chartsRole of Infogram, power bi and google charts
Role of Infogram, power bi and google charts
anjanasharma77573
 
DATA VISUALIZATION TOOLS e.g Power bi..
DATA VISUALIZATION TOOLS e.g  Power bi..DATA VISUALIZATION TOOLS e.g  Power bi..
DATA VISUALIZATION TOOLS e.g Power bi..
anjanasharma77573
 
type of vector data in vectors and geometries
type of vector data in vectors and geometriestype of vector data in vectors and geometries
type of vector data in vectors and geometries
anjanasharma77573
 
Introduction to vectors and geometry - ..
Introduction to vectors and geometry - ..Introduction to vectors and geometry - ..
Introduction to vectors and geometry - ..
anjanasharma77573
 
type of vector data in vectors and geometry
type of vector data in vectors and geometrytype of vector data in vectors and geometry
type of vector data in vectors and geometry
anjanasharma77573
 
Introduction to vectors and geometry -....
Introduction to vectors and geometry -....Introduction to vectors and geometry -....
Introduction to vectors and geometry -....
anjanasharma77573
 
basic of SQL constraints in database management system
basic of SQL constraints in database management systembasic of SQL constraints in database management system
basic of SQL constraints in database management system
anjanasharma77573
 
SQL subqueries in database management system
SQL subqueries in database management systemSQL subqueries in database management system
SQL subqueries in database management system
anjanasharma77573
 
practices of C programming function concepts
practices of C programming function conceptspractices of C programming function concepts
practices of C programming function concepts
anjanasharma77573
 
Practice of c PROGRAMMING logics and concepts
Practice of c PROGRAMMING logics and conceptsPractice of c PROGRAMMING logics and concepts
Practice of c PROGRAMMING logics and concepts
anjanasharma77573
 
programming concepts with c ++..........
programming concepts with c ++..........programming concepts with c ++..........
programming concepts with c ++..........
anjanasharma77573
 
basic of c programming practicals.......
basic of c programming practicals.......basic of c programming practicals.......
basic of c programming practicals.......
anjanasharma77573
 
Detailed concept of function in c programming
Detailed concept of function  in c programmingDetailed concept of function  in c programming
Detailed concept of function in c programming
anjanasharma77573
 
Implemintation of looping programs......
Implemintation of looping programs......Implemintation of looping programs......
Implemintation of looping programs......
anjanasharma77573
 
Ad

Recently uploaded (20)

5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx
andani26
 
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation TemplateSmart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
yojeari421237
 
Understanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep WebUnderstanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep Web
nabilajabin35
 
(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security
aluacharya169
 
What's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff HustonWhat's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff Huston
APNIC
 
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC
 
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
David Bernard Ezell
 
Determining Glass is mechanical textile
Determining  Glass is mechanical textileDetermining  Glass is mechanical textile
Determining Glass is mechanical textile
Azizul Hakim
 
Computers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers NetworksComputers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers Networks
Tito208863
 
final project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptxfinal project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptx
ESTEFANOANDREYGARCIA
 
Best web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you businessBest web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you business
steve198109
 
White and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptxWhite and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptx
canumatown
 
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 SupportReliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
steve198109
 
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHostingTop Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
steve198109
 
IT Services Workflow From Request to Resolution
IT Services Workflow From Request to ResolutionIT Services Workflow From Request to Resolution
IT Services Workflow From Request to Resolution
mzmziiskd
 
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
DataProvider1
 
Perguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolhaPerguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolha
socaslev
 
How to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any DowntimeHow to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any Downtime
steve198109
 
highend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptxhighend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptx
elhadjcheikhdiop
 
data science data stoger Presentation1.pptx
data science data stoger Presentation1.pptxdata science data stoger Presentation1.pptx
data science data stoger Presentation1.pptx
sandeepsherkhane830
 
5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx5-Proses-proses Akuisisi Citra Digital.pptx
5-Proses-proses Akuisisi Citra Digital.pptx
andani26
 
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation TemplateSmart Mobile App Pitch Deck丨AI Travel App Presentation Template
Smart Mobile App Pitch Deck丨AI Travel App Presentation Template
yojeari421237
 
Understanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep WebUnderstanding the Tor Network and Exploring the Deep Web
Understanding the Tor Network and Exploring the Deep Web
nabilajabin35
 
(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security(Hosting PHising Sites) for Cryptography and network security
(Hosting PHising Sites) for Cryptography and network security
aluacharya169
 
What's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff HustonWhat's going on with IPv6? presented by Geoff Huston
What's going on with IPv6? presented by Geoff Huston
APNIC
 
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC -Policy Development Process, presented at Local APIGA Taiwan 2025
APNIC
 
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...Virtualization Trends  Streamlining Operations in Telecom with David Bernard ...
Virtualization Trends Streamlining Operations in Telecom with David Bernard ...
David Bernard Ezell
 
Determining Glass is mechanical textile
Determining  Glass is mechanical textileDetermining  Glass is mechanical textile
Determining Glass is mechanical textile
Azizul Hakim
 
Computers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers NetworksComputers Networks Computers Networks Computers Networks
Computers Networks Computers Networks Computers Networks
Tito208863
 
final project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptxfinal project for icpna b08 if someone want.pptx
final project for icpna b08 if someone want.pptx
ESTEFANOANDREYGARCIA
 
Best web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you businessBest web hosting Vancouver 2025 for you business
Best web hosting Vancouver 2025 for you business
steve198109
 
White and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptxWhite and Red Clean Car Business Pitch Presentation.pptx
White and Red Clean Car Business Pitch Presentation.pptx
canumatown
 
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 SupportReliable Vancouver Web Hosting with Local Servers & 24/7 Support
Reliable Vancouver Web Hosting with Local Servers & 24/7 Support
steve198109
 
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHostingTop Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
Top Vancouver Green Business Ideas for 2025 Powered by 4GoodHosting
steve198109
 
IT Services Workflow From Request to Resolution
IT Services Workflow From Request to ResolutionIT Services Workflow From Request to Resolution
IT Services Workflow From Request to Resolution
mzmziiskd
 
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...Mobile database for your company telemarketing or sms marketing campaigns. Fr...
Mobile database for your company telemarketing or sms marketing campaigns. Fr...
DataProvider1
 
Perguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolhaPerguntas dos animais - Slides ilustrados de múltipla escolha
Perguntas dos animais - Slides ilustrados de múltipla escolha
socaslev
 
How to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any DowntimeHow to Switch Hosting Providers in Vancouver Without Any Downtime
How to Switch Hosting Providers in Vancouver Without Any Downtime
steve198109
 
highend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptxhighend-srxseries-services-gateways-customer-presentation.pptx
highend-srxseries-services-gateways-customer-presentation.pptx
elhadjcheikhdiop
 
data science data stoger Presentation1.pptx
data science data stoger Presentation1.pptxdata science data stoger Presentation1.pptx
data science data stoger Presentation1.pptx
sandeepsherkhane830
 
Ad

In Built Math functions in java script..

  • 1. In –Built Math functions in Java script
  • 2. Math.abs(x): Returns the absolute value of a number x.  Math.abs(-5); // Returns 5 Math.ceil(x): Returns the smallest integer greater than or equal to a number x. Math.ceil(4.3); // Returns 5 Math.floor(x): Returns the largest integer less than or equal to a number x. Math.floor(4.7); // Returns 4
  • 3. Math.round(x): Returns the value of a number x rounded to the nearest integer.  Math.round(4.5); // Returns 5 Math.max(x1, x2, ...): Returns the largest of zero or more numbers. Math.max(10, 5, 8); // Returns 10 Math.min(x1, x2, ...): Returns the smallest of zero or more numbers. Math.min(10, 5, 8); // Returns 5
  • 4. Math.pow(x, y): Returns the base to the exponent power, that is, x raised to the power y.  Math.pow(2, 3); // Returns 8 Math.sqrt(x): Returns the square root of a number x. Math.sqrt(9); // Returns 3 Math.random(): Returns a random floating-point number between 0 (inclusive) and 1 (exclusive). Math.random(); // Returns a random number between 0 and 1
  • 5. Math.PI: A property representing the ratio of the circumference of a circle to its diameter, approximately equal to 3.14159.  Math.PI; // Returns 3.141592653589793
  • 6. <body> <h1>JavaScript Math Functions</h1> <p id="output"></p> <script> // Using Math functions document.getElementById("output").innerHTML += "<strong>Math.abs(-5):</strong> " + Math.abs(-5) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.ceil(4.3):</strong> " + Math.ceil(4.3) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.floor(4.7):</strong> " + Math.floor(4.7) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.round(4.5):</strong> " + Math.round(4.5) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.max(10, 5, 8):</strong> " + Math.max(10, 5, 8) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.min(10, 5, 8):</strong> " + Math.min(10, 5, 8) + "<br>";
  • 7. document.getElementById("output").innerHTML += "<strong>Math.pow(2, 3):</strong> " + Math.pow(2, 3) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.sqrt(9):</strong> " + Math.sqrt(9) + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.random():</strong> " + Math.random() + "<br>"; document.getElementById("output").innerHTML += "<strong>Math.PI:</strong> " + Math.PI + "<br>"; </script> </body> </html>