1. Methods of Math object
1. Find the maximum value method
①min()
Syntax: Math.min (num1,num2…numN)
Function: Find the minimum value in a set of numbers.
Return value: Number.
②max()
Syntax: Math.max(num1,num2…numN)
Function: Find the maximum value in a set of numbers.
Return value: Number.
<script> var min=Math.min(5,-4,0,9,108,-55); console.log(min);//-55 var min1=Math.min(5,-4,0,9,108,-55,"abc"); console.log(min1);//NaN var max=Math.max(88,0,6,85,199); console.log(ma);//199 </script>
2. Rounding method
①ceil()
Syntax: Math.ceil(num)
Function: Round up, that is, return greater than The smallest integer of num.
Return value: Number.
②floor
Syntax: Math.floor(num)
Function: Round down and return the integer part of num.
Return value: Number.
③round()
Syntax: Math.round (num)
Function: Round the value to the nearest integer.
Return value: Number.
var num=Math.ceil(189.99); console.log(num);//190 var num1=Math.ceil(189.09); console.log(num1);//190 var num2=189.09; var int1=Math.ceil(num2);//190 var int2=Math.floor(num2);//189 var int3=Math.round(num2);//189 var num3=189.69; var int3=Math.round(num3);//190
3. Find the absolute value
①abs()
Syntax: Math.abs (num)
Function: Return the absolute value of num.
Return value: Number.
var nums=-55; console.log(Math.abs(nums));//55
4. Generate random numbers
①random()
Syntax: Math.random()
Function: Return a random number greater than or equal to 0 and less than 1.
Return value: Number.
Instructions:
The formula for finding a random integer between n and m:
random=Math.floor(Math.random()*(m-n 1) n);
var random=Math.random(); console.log(random);//每一次刷新都不一样,小于1的随机数:0.458541256325412 //生成x~x之间的随机整数 function getRandom(n,m){ var choise=m-n+1;//随机整数的个数 return Math.floor(Math.random()*choise+n); } var random1=getRandom(2,6); console.log(random1);//5 3 2...
2. Date object
1. Method of creating date object
Syntax: new Date();
Function: Create a date and time Object
Return value: Returns the current date and time object without passing parameters.
Note:
If you want to create a date object based on a specific date and time, you must pass in the number of milliseconds representing the date or a set of comma-separated values representing the year, month, day, hour, minute, and second. parameters.
2. Method of obtaining date and time
1. getFullYear(): Returns the 4-digit year
2. getMonth(): Returns the Month, the return value is 0-11
3. getDate(): returns the number of days in the month
4. getDay(): returns the week, the return value is 0-6
5. getHours(): returns Hour
6, getMinutes(): Returns minutes
7, getSeconds(): Returns seconds
8, getTime(): Returns the number of milliseconds representing the date
<script> //创建一个日期时间对象 var weeks=["日","一","二","三","四","五","六"], today=new Date(); console.log(today);//Thu Jan 04 2018 15:43:49 GMT+0800 (中国标准时间) var today=new Date(), year=today.getFullYear(), month=today.getMonth()+1, date=today.getDate(), week=today.getDay(), hours=today.getHours(), minutes=today.getMinutes(), seconds=today.getSeconds(), times=today.getTime(), time=year+'年'+month+'月'+date+'日'+hours+'时' +minutes+'分'+seconds+'秒 星期'+weeks[week]; console.log("现在是:"+time); //现在是:2018年1月4日15时51分41秒 星期四 console.log(times);//从1970年1月1日00:00:00开始到现在时间的毫秒数:1515052409017 </script>
3. Methods for setting date and time
1. setFullYear(year): Set the 4-digit year
2. setMonth(mon): Set the month in the date, starting from 0, 0 means January
3. setDate(): Set the date
4. setDay(): Set the day of the week, starting from 0, 0 means Sunday
5. setHours(): Set the hours
6. setMinutes(): Set the minutes
7. setSeconds(): Set seconds
8. setTime(): Set the date in milliseconds, which will change the entire date
//创建一个日期时间对象 var today=new Date(); today.setFullYear(2015); console.log(today.getFullYear());//2015 today.setMonth(8); console.log(today.getMonth());//8 today.setMonth(13); console.log(today.getMonth());//1
Case: the day of the week after 50 days
<script> var today=new Date(); //第一种做法 //today.setDate(today.getDate()+50); //console.log(today.getDay()); //5 //第二种做法 var weeks=["日","一","二","三","四","五","六"]; var year=today.getFullYear(); var month=today.getMonth(); var day=today.getDate(); //创建一个目标日期对象 var temp = new Date(year,month,day+50); console.log("50天后的今天是:"+temp.getFullYear()+'-'+(temp.getMonth()+1)+'-'+temp.getDate() +'-'+'星期'+weeks[temp.getDay()]); //50天后的今天是:2018-2-23-星期五 </script>
Recommended tutorial: "JS Tutorial"
The above is the detailed content of Detailed explanation of JS built-in objects Math and Date. For more information, please follow other related articles on the PHP Chinese website!

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.


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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

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

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

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.