1. Built-in objects Built-in objects refer to some objects that come with the JS language. These objects are for developers to use and provide some commonly used or most basic and necessary functions (properties and methods). The biggest advantage of built-in objects is that they help us develop quickly. 2. Math Object 1. Use of Math objectsMath.abs(x): Returns the absolute value of xMath.pow(x,y): Returns x raised to the power of yMath.sqrt(x): Returns the square root of xMath.random(): Returns a pseudo-random number (between 0.0 and 1.0) Math.round(x): Returns the nearest integer after rounding x. Math.floor(x): Returns the largest integer less than or equal to x. (Round down) Math.ceil(x): The function returns the smallest integer greater than or equal to x (rounded up) Math.max(): Returns the maximum value of the parameters. Math.min(): Returns the minimum value of the parameters.
As shown below: console.log('Math.abs(-2)='+Math.abs(-2)); console.log('Math.ceil(1.7)='+Math.ceil(1.7)); console.log('Math.floor(1.7)='+Math.floor(1.7)); console.log('Math.pow(2,3)='+Math.pow(2,3)); console.log('Math.sqrt(3)='+Math.sqrt(3)); console.log('Math.round(3.4)='+Math.round(3.4)); console.log('Math.round(3.6)='+Math.round(3.6)); console.log('Math.max(1,2)='+Math.max(1,2)); console.log('Math.min(1,2)='+Math.min(1,2)); The print result is: 2. Generate random numbers in a specified rangeEncapsulate a function that generates a random number between 1 and 10: The code is as follows: function random(min,max){ return Math.floor(Math.random()*(max-min+1))+min; } for(var i =1;i<=10;i++){ console.log('The result of the '+i+'th print is: '+random(1,10)); } The random printout results are: Among them, 3. Date Object
1. Use of Date() methodTo get the current time, you must instantiate: var now = new Date(); console.log(now); Parameters of the Date() constructor:
For example: var date1 = new Date() console.log('date1='+date1); var date2 = new Date(2021,11,08,20,51); console.log('date2='+date2); date3 = new Date('2021-11-08 20:54') console.log('date3='+date3); The output is: 2. Use of date objectsUse of get method: For example: var date1 = new Date() console.log('date1='+date1); console.log('This year is:' + date1.getFullYear() + 'year'); console.log('This month is:' + date1.getMonth() + 'Month'); console.log('Today is:' + date1.getDate() + 'number'); console.log('Now is: '+date1.getHours()+''); console.log('Now is:' + date1.getMinutes() + 'minutes'); The result is: Use of set method: For example: var date1 = new Date() console.log(date1); date1.setFullYear(2020) console.log(date1); The printed result is: 3. Get timestampThrough the valueof() or getTime() method of the date object: var date1 = new Date(); console.log(date1.valueOf()); console.log(date1.getTime()); Use the "+" operator to convert to a numeric type: var date2 = +new Date(); console.log(date2); Use the new Date.now() method in HTML5 : console.log(Date.now()); 4. Array Object1. Creation of array objectsThere are two ways to create array objects:
2. Check whether it is an array As shown below: var arr = [1,2,3,4]; var obj = {}; console.log(arr instanceof Array); console.log(obj instanceof Array); console.log(Array.isArray(arr)); console.log(Array.isArray(obj)); 3. Methods for adding and deleting array elements Note: The return value of
var arr = [1500, 1200, 2000, 2100, 1800]; var newArr = []; for(var i=0;i<arr.length;i++){ if(arr[i]<2000){ newArr.push(arr[i]); } } console.log(newArr); The printed result is: 4. Array sorting
For example: Reverse an array: var arr = [1500, 1200, 2000, 2100, 1800]; console.log(arr); console.log(arr.reverse()); Sort an array: var arr = [1500, 1200, 2000, 2100, 1800]; console.log(arr); var newArr = arr.sort(function(a,b){ return ab; // ascending order return ba; // descending order }) console.log(newArr); The printed result is: 5. Array indexing method
For example: var arr = [1500, 1200, 2000,1500, 2100, 1500,1800]; console.log('arr.indexOf(1500):' + arr.indexOf(1500)); console.log('arr.lastIndexOf(1500):'+arr.lastIndexOf(1500)); The printed result is: Array deduplication example: Given an array ['c', 'a', 'z', 'a', 'x', 'a', 'x', 'c', 'b'], we need to remove duplicate elements from the array. The code is as follows: var arr = ['c', 'a', 'z', 'a','x', 'a', 'x', 'c', 'b']; var newArr = []; for(var i =0;i<arr.length;i++){ if (newArr.indexOf(arr[i]) === -1) { newArr.push(arr[i]); } } console.log(newArr); The printed result is: 6. Array to string conversion
For example: var arr = ['a', 'b', 'c']; console.log(arr); console.log(arr.toString()); // Output: a,b,c // Using join() console.log(arr.join()); // Output: a,b,c console.log(arr.join('')); // Output: abc console.log(arr.join('-')); // Output: abc 5. String Object1. Return position according to character
For example: It is required to find the position and number of occurrences of all specified elements in a set of strings. The string is ' Hello World, Hello JavaScript '. The code is as follows: var str = 'Hello World, Hello JavaScript'; console.log(str); var index = str.indexOf('o'); var num = 0; while (index != -1) { console.log(index); // Output in sequence: 4, 7, 17 index = str.indexOf('o', index + 1); num++; } console.log('The number of times o appears is: ' + num); // The number of times o appears is: 3 The printed result is: 2. Return characters by positionFor example: var str = 'Apple'; console.log(str.charAt(3)); // Output: 1 console.log(str.charCodeAt(0)); // Output: 65 (ASCII code of character A is 65) console.log(str[0]); // Output: A For example: Use var str = 'Apple'; // Step 1, count the number of occurrences of each character var o = {}; for (var i = 0; i < str.length; i++) { var chars = str.charAt(i); // Use chars to save each character in the string if (o[chars]) { // Use the properties of the object to facilitate the search for elements o[chars]++; } else { o[chars] = 1; } } console.log(o); The print result is: 3. String operation methodsvar str = 'HelloWorld'; str.concat('!'); // Concatenate characters at the end of the string, result: HelloWorld! str.slice(1, 3); // Extract the content from position 1 to position 3. Result: el str.substring(5); // Extract the content from position 5 to the end. Result: World str.substring(5, 7); // intercept the content from position 5 to position 7, result: Wo str.substr(5); // Intercept the content from position 5 to the end of the string, result: World str.toLowerCase(); // Convert the string to lowercase, result: helloworld str.toUpperCase(); // Convert the string to uppercase, result: HELLOWORLD str.split('l'); // Use "l" to split the string, result: ["He", "", "oWor", "d"] str.replace('World', '!'); // Replace string, result: "Hello!" 4. split() method var str = 'a,b,c,d'; console.log(str); console.log(str.split(',')); // Returns an array [a, b, c, d] This is the end of this article about You may also be interested in:
|
<<: Share 13 excellent web wireframe design and production tools
>>: Detailed explanation of the code for implementing linear gradients with CSS3
RULES can be used to control the style of the int...
Sometimes we need to control whether HTML elements...
MySQL 5.7.27 detailed download, installation and ...
Many people also asked me what books I read when ...
The general way of writing is as follows: XML/HTM...
In the project, form testing is often encountered...
Table of contents Preface environment Install Cre...
This article shares the specific code of the canv...
Reverse Proxy Reverse proxy refers to receiving t...
Preface There is a scenario where, for the sake o...
Table of contents 1. Docker installation on Mac 2...
If you use docker for large-scale development but...
There are many ways to write and validate form fi...
Table of contents Image capture through svg CSS p...
This article shares the specific code of NodeJS t...