Home Web Front-end JS Tutorial JavaScript Advanced Programming Reading Notes (12) js built-in object Math_javascript skills

JavaScript Advanced Programming Reading Notes (12) js built-in object Math_javascript skills

May 16, 2016 pm 05:51 PM
math built-in objects

Attributes of the Math object

E: value e, the base of the natural logarithm
LN10: the natural logarithm of 10
LN2: the natural logarithm of 2
LOG2E: 2 as the base E Logarithm
LOG10E: Logarithm of E with base 10
PI: Value pie
SQRT1_2: Square root of 1/2
SQRT2: Square root of 2
Math object method: Maximum Value and minimum value
min()&&max() is used to get the minimum and maximum value in a set of numbers.

Example:

Copy code The code is as follows:

var iMax=Math.Max(1,2,3);
alert(iMax);//outputs 3
var iMin=Math.Min(1,2,3);
alert(iMin); //outputs 1


Approximate value

abs() is used to return the absolute value of a number.
Example:
Copy code The code is as follows:

var iNegOne=Math.abs( -1);
alert(iNegOne);//oupputs 1
var iPosOne=Math.abs(1);
alert(iPosOne);//outputs 1


Round decimals into integers

ceil() is an upward rounding function, always rounding numbers up to the nearest value
floor() is a downward rounding function, always Rounds the number down to the nearest value
round() is the rounding method
Example:
Copy code The code is as follows:

alert(Math.ceil(25.5));//oputpus 26
alert(Math.floor(25.5));//oputpus 25
alert(Math.round(25.5));//oputpus 26


Exponent calculation

exp() is used to raise Math.E to the specified power
log() is used to return the natural logarithm of a specific number
pow() is used to raise the specified number to the specified power
sqrt() is used to return the square root of the specified number

Trigonometric Function method

acos(x) is used to return the arc cosine value of x
asin(x) is used to return the arc sine value of x
atan(x) is used to return the arc tangent value of x
atan2(y,x) is used to return the inverse cosine value of y/x
cos(x) is used to return the cosine value of x
sin(x) is used to return the sine value of x
tan(x) is used to return the tangent value of x

Random number function

random() is used to return a random number between 0 and 1, excluding 0 and 1 Select random numbers within a certain range:


Copy code The code is as follows:
function selectFrom(iFirstValue,iLastValue){
var iChoices=iLastValue-iFirstValue 1;
return Math.floor(Math.random()*iChoices iFirstValue);
}
//demo
var iNum=selectFrom(2,10);


Author: Artwl
Source: http://artwl.cnblogs.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Calculate the natural logarithm using Java's Math.log() function Calculate the natural logarithm using Java's Math.log() function Jul 24, 2023 am 11:10 AM

Calculate the natural logarithm using Java's Math.log() function Natural logarithm (Naturallogarithm) is one of the common logarithm types in mathematics. In the Java programming language, you can use the Math.log() function to calculate the natural logarithm. The usage of this function is introduced below and some code examples are given. The Math.log() function is a static method in Java that is used to calculate the logarithm with base e. This function accepts a parameter x and returns the natural logarithm of x

Learn to use common PHP built-in objects: master the operation and usage of built-in objects Learn to use common PHP built-in objects: master the operation and usage of built-in objects Jan 10, 2024 am 10:02 AM

Master PHP built-in objects: Learn the operation and usage of commonly used built-in objects. Specific code examples are required. As a widely used back-end development language, PHP provides many powerful built-in objects that can help us develop and manage websites efficiently. Mastering the operation and usage of these built-in objects is crucial for PHP developers. This article will introduce some commonly used PHP built-in objects and provide specific code examples. 1. String processing object (String) String processing is often used in Web development, PHP

Use the math.Log2 function to calculate the base 2 logarithm of a specified number Use the math.Log2 function to calculate the base 2 logarithm of a specified number Jul 24, 2023 pm 12:14 PM

Use the math.Log2 function to calculate the base 2 logarithm of a specified number. In mathematics, the logarithm is an important concept that describes the exponential relationship of one number to another number (the so-called base). Among them, the base 2 logarithm is particularly common and is frequently used in the fields of computer science and information technology. In the Python programming language, we can calculate the base 2 logarithm of a number using the log2 function from the math library. Here is a simple code example: importmathdef

What are the built-in objects of Vue? What are the built-in objects of Vue? Nov 08, 2023 pm 04:52 PM

Vue's built-in objects include Vue, Vue instance, data, el, options, parent, root, children, slots, scopedSlots, refs, isServer, attrs and listeners. Vue.js is a progressive JavaScript framework for building user interfaces. In Vue.js, there are some built-in objects or global APIs that can be used to create and manage Vue applications.

What are the built-in objects in asp? What are the built-in objects in asp? Nov 09, 2023 am 11:32 AM

ASP built-in objects include Request, Response, Session, Application, Server, Session.Contents, Application.Contents, Server.CreateObject, Server.MapPath, Server.Execute, Server.Transfer, etc. Detailed introduction: 1. Request: represents HTTP request object, etc.

Python's Math library: usage and introduction to common functions Python's Math library: usage and introduction to common functions Apr 24, 2023 pm 11:10 PM

Overview of the Math library The math library is a built-in mathematical function library provided by Python. Because complex number types are often used in scientific calculations and not in general calculations, the math library does not support complex number types and only supports integer and floating point number operations. The math library provides a total of 4 mathematical constants and 44 functions. The 44 functions are divided into 4 categories, including 16 numerical representation functions, 8 power logarithmic functions, 16 trigonometric logarithmic functions and 4 advanced special functions. There are a large number of functions in the math library. During the learning process, we only need to understand the function functions one by one and remember some commonly used functions. In actual programming, if you need to use the math library, you can check the math library quick reference at any time. The functions in the math library cannot be used directly and need to be first

What are the built-in objects in Python? What are the built-in objects in Python? Nov 08, 2023 am 10:19 AM

There are ten types of Python built-in objects: "int", "float", "str", "list", "tuple", "dict", "set", "bool", "NoneType" and "function": 1. int , used to represent integer values; 2. float, used to represent real values; 3. str, used to represent text data; 4. list, used to store a series of ordered elements; 5. tuple, tuple type; 6 , dict, a data structure used to store key-value pairs, etc.

What are the built-in objects in nodejs? What are the built-in objects in nodejs? Nov 07, 2023 pm 03:33 PM

Nodejs built-in objects include Global, Process, Buffer, Console, Timer, EventEmitter, Stream, File System, HTTP, URL, Query String, Crypto, Path, OS, etc. Detailed introduction: 1. Global: global object, similar to the window object in the browser environment, which can be accessed anywhere; 2. Process, etc.

See all articles