JavaScript中的Date對(duì)象是用于處理日期和時(shí)間的對(duì)象。它可以用來表示從1970年1月1日00:00:00 UTC(協(xié)調(diào)世界時(shí))開始的毫秒數(shù),也可以表示某個(gè)具體的日期和時(shí)間。
以下是一些常用的Date對(duì)象方法:
getDate(): 獲取當(dāng)前日期的天數(shù)(1-31)。
getDay(): 獲取當(dāng)前日期的星期幾(0-6)。
getMonth(): 獲取當(dāng)前日期的月份(0-11)。
getFullYear(): 獲取當(dāng)前日期的年份(四位數(shù)字)。
getTime(): 獲取當(dāng)前日期的毫秒數(shù)。
setDate(): 設(shè)置當(dāng)前日期的天數(shù)。
setMonth(): 設(shè)置當(dāng)前日期的月份(0-11)。
setFullYear(): 設(shè)置當(dāng)前日期的年份(四位數(shù)字)。
setTime(): 設(shè)置當(dāng)前日期的毫秒數(shù)。
toDateString(): 將當(dāng)前日期對(duì)象轉(zhuǎn)換為字符串格式,只包含日期信息。
toTimeString(): 將當(dāng)前日期對(duì)象轉(zhuǎn)換為字符串格式,只包含時(shí)間信息。
toString(): 將當(dāng)前日期對(duì)象轉(zhuǎn)換為字符串格式,包含日期和時(shí)間信息。
valueOf(): 返回當(dāng)前日期對(duì)象的毫秒數(shù)。
以下是一些使用Date對(duì)象的示例:
// 獲取當(dāng)前日期時(shí)間
const now = new Date();
console.log(now);
// 獲取指定日期時(shí)間
const specificDate = new Date('2022-05-18T09:00:00');
console.log(specificDate);
// 獲取當(dāng)前年份
const currentYear = now.getFullYear();
console.log(currentYear);
// 獲取當(dāng)前月份
const currentMonth = now.getMonth();
console.log(currentMonth);
// 獲取當(dāng)前日期
const currentDate = now.getDate();
console.log(currentDate);
// 獲取當(dāng)前星期幾
const currentDay = now.getDay();
console.log(currentDay);
// 獲取當(dāng)前小時(shí)數(shù)
const currentHour = now.getHours();
console.log(currentHour);
// 獲取當(dāng)前分鐘數(shù)
const currentMinute = now.getMinutes();
console.log(currentMinute);
// 獲取當(dāng)前秒數(shù)
const currentSecond = now.getSeconds();
console.log(currentSecond);
變量命名規(guī)范:
在JavaScript中,變量名的命名規(guī)則是:
變量名必須以字母、下劃線(_)或美元符號(hào)($)開頭。
變量名中可以包含字母、數(shù)字、下劃線(_)或美元符號(hào)($)。
變量名是大小寫敏感的。
變量名應(yīng)該具有描述性。
以下是一些變量命名的示例:
// 合法的變量名
let name = 'John';
let _age = 18;
let $height = 180;
let firstName = 'John';
let lastName = 'Doe';
// 非法的變量名
let 123abc = 123; // 變量名不能以數(shù)字開頭
let my-name = 'John'; // 變量名不能包含連字符(-)
let my age = 18; // 變量名不能包含空格
以上是關(guān)于JavaScript中Date對(duì)象和變量命名規(guī)范的簡(jiǎn)單介紹。