


JavaScript Advanced Programming Reading Notes (12) js built-in object Math_javascript skills
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:
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:
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:
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:
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

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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. 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

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.

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.

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

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.

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.
