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!
Python vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AMPython is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.
Python vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AMPython and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.
From C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AMThe 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.
JavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AMDifferent 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.
Beyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AMJavaScript'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.
Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AMI 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
How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AMThis 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: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AMJavaScript 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.


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft








