Home Web Front-end JS Tutorial Introduction to mathematical operations in JavaScript_javascript skills

Introduction to mathematical operations in JavaScript_javascript skills

May 16, 2016 pm 04:23 PM
javascript computation

In JavaScript, mathematical operations can be implemented through two operations:

1. , -, *, /, % and other operators.
2. Use the calculation function of the Math object. For example, use Math.pow(2,3) to calculate 2 raised to the third power.

Unlike Java, mathematical operations in JavaScript do not throw any errors. Operations such as overflowing calculation results, dividing by 0, and taking the square root of negative numbers are all legal. The results are special values ​​in JavaScript: positive and negative Infinity (infinity), positive and negative 0, NaN (not a number):

1. Positive and negative Infinity. When the calculation result is greater than the maximum number that JavaScript can represent (Number.MAX_VALUE), the result is positive Infinity; when the calculation result is smaller than the minimum number that JavaScript can represent (-Number.MAX_VALUE), the result is negative Infinity. Mathematical operations such as , -, * and / related to Infinity follow the rules of limit calculation in advanced mathematics. The result of 1/0 is positive Infinity, and the result of -1/0 is negative Infinity.

2. Plus or minus 0. When the calculation result is positive, but less than the smallest decimal that JavaScript can represent (Number.MIN_VALUE), the result is positive 0; when the calculation result is negative, but greater than the largest negative decimal that JavaScript can represent (-Number.MIN_VALUE) , the result is negative 0. Normally, developers don't need to care about the difference between positive and negative 0.

3.NaN. For some special calculation results that cannot be expressed even with positive and negative Infinity, JavaScript uses NaN to represent it (it is worth noting that although NaN literally means "not a number", its type is number). These special calculations include:

1).0/0.
2).Infinity/Infinity.
3). Take the square root of negative numbers.
4). Perform numerical conversion operations on non-numeric strings.

For Infinity and NaN, they are not only the printed results of "infinite" and "not a number", but also the global variable names representing these two special values ​​in JavaScript. In fact, in ECMAScript 3, these two global variables can also be assigned other values; this maddening rule has been revised in ECMAScript 5, making these two global variables read-only. In addition to directly accessing the Infinity variable and NaN variable, you can also use these two special values ​​by accessing the member variables of the Number object:

1.Infinity is equivalent to Number.POSITIVE_INFINITY.
2.-Infinity is equivalent to Number.NEGATIVE_INFINITY.
3.NaN is equivalent to Number.NaN.

In JavaScript, NaN is a very interesting special value. It has a special property: it is not equal to any other value (including itself). There are two ways to determine whether a value is NaN:

1. For variable x, determine whether x!=x is true. This expression is true only if x is NaN.

2. For variable x, call the global function isNaN() in JavaScript to determine whether isNaN(x) is true. Using this method to determine NaN is actually not rigorous, because the expression isNaN(x) is true in four cases:

1).x is NaN.
2).x is a string, and the string is not a number.
3).x is an object.
4).x is undefined.

In addition to isNaN(), JavaScript has another useful global function: isFinite(). For variable a, isFinite(a) is true in the following situations:

1).a is number, but not NaN or positive or negative Infinity.
2).a is a string, but the content of the string is a non-NaN, non-positive or negative Infinity number.
3).a is null.
4).a is a boolean value.


Since non-numeric types such as null and undefined will affect the result, I personally think it is best to determine the type of the parameter before using isNaN() or isFinite().

Experiment

Copy code The code is as follows:

//Test Infinity
var a = Number.MAX_VALUE;
console.log(a*1.1);//Infinity
console.log(a*-1.1);//-Infinity
console.log(1/0);//Infinity
console.log(-1/0);//-Infinity

//Test positive/negative 0
var b = Number.MIN_VALUE;
console.log(b/2);//0
console.log(-b/2);//0

//Test NaN
console.log(0/0);//NaN
console.log(Infinity/Infinity);//NaN
console.log(Math.sqrt(-1));//NaN
console.log(parseInt("string"));//NaN

//Test Infinity comparison
console.log(Infinity === Number.POSITIVE_INFINITY);//true
console.log(-Infinity === Number.NEGATIVE_INFINITY);//true

//Test NaN comparison
console.log(NaN === NaN);//false

//Test isNaN()
console.log(isNaN(NaN));//true
console.log(isNaN("42"));//false
console.log(isNaN("string"));//true
console.log(isNaN({}));//true
console.log(isNaN(undefined));//true
console.log(isNaN(null));//false

//Test isFinite()
console.log(isFinite(42));//true
console.log(isFinite(Infinity));//false
console.log(isFinite(NaN));//false
console.log(isFinite("29"));//true
console.log(isFinite("string"));//false
console.log(isFinite(null));//true
console.log(isFinite(undefined));//false
console.log(isFinite(true));//true
console.log(isFinite(false));//true

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)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks 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)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Learn how to calculate variance in Go Learn how to calculate variance in Go Feb 23, 2024 pm 09:30 PM

Learn how to solve for variance in Golang. In statistics, variance is an important indicator of the dispersion of a set of data. It is used to measure the difference between each data point in the data set and the mean. In Golang, we can solve for the variance of a set of data by writing code. Next, we will introduce how to implement variance calculation in Golang and provide specific code examples. 1. Definition of variance The calculation formula of variance is as follows: [Var(X)=rac{

See all articles