1. Number in JavaScript In 0xa //corresponds to decimal 10 0b101 //corresponds to decimal 5 0o22 //corresponds to decimal 18 In 1/0 // Infinity
But the result of 0/0 is When a non-numeric string is converted to a numeric type, NaN is also returned, for example, You can use Number.isNaN(2) //false Number.isNaN('a') // true Number.isNan('2') //false Numeric value is a primitive type, and there is also a corresponding wrapper object n = new Number(10) n.valueOf() === 10 //true The value corresponding to the object n defined by the wrapper class is exactly equal to the original type value 10. 2. Math Object in Javascript Math.max gets the maximum value: let max = Math.max(1,2,3,4) console.log(max) //4 Math.min gets the minimum value: let min = Math.min(1,2,3,4) console.log(min) //1 If you are looking for the maximum and minimum values in an array, you can use the spread operator... to decompose the array into multiple parameter values. Math.max(...[1,2,3,4]) //4 Math.ceil rounds up: console.log(Math.ceil(2.3)) // 3 Math.floor rounds down: console.log(Math.floor(2.8)) // 2 Math.round rounds to the nearest integer: console.log(Math.round(2.5)) //3 console.log(Math.round(2.3)) //2
console.log(Math.random()) Randomly generate an integer between 0 and 10 let num = Math.ceil(Math.random()*10) console.log(num) Math.pow power: Math.pow(2, 10) //1024 This is the end of this article about the introduction of You may also be interested in:
|
<<: How to implement element floating and clear floating with CSS
>>: 50 Beautiful FLASH Website Design Examples
This article compares and summarizes four ways of...
Preface Review and summary of mobile terminal rem...
Download image Selecting a MySQL Image docker sea...
Installation Script Ubuntu / CentOS There seems t...
Table of contents Identifier length limit Length ...
Preface Since many friends say they don’t have Ma...
Starting from Elasticsearch 6.8, free users are a...
When making a web page, you sometimes use a dividi...
Publish Over SSH Plugin Usage Before using Publis...
First of all, let me talk to you about my daily l...
The first one is to use jQuery's ajax to send...
1. Run fonts, open the font folder, and find the ...
Monday to Sunday time format conversion (Y --- ye...
This article mainly introduces the detailed expla...
Table of contents Preface Computed properties Int...