內建物件總結

2021-10-23 22:45:18 字數 948 閱讀 9052

date物件(內建物件)

在js中使用date物件來表示乙個時間

分當前**執行時間和**指定執行時間

1、建立date物件

如果時間使用建構函式建立乙個date物件,則會封裝為當前**執行的時間

列:var d=new date();

console.log(d);

2、建立乙個指定的時間物件

需要在建構函式中傳遞乙個表示時間的字串作為引數,只要是表示時間的字串都是可行的

列:var date2=new date(「2020-03-23 12:34:12」);

console.log(date2);

日期物件

getdate() - 獲取當前日期物件時幾日

getday() - 獲取當前日期是星期幾

會返回乙個0-6的值

0 表示週日

1 表示周一

…6 表示週六

getmonth() - 獲取當前日期物件的月份

會返回乙個0-11的值

0 表示 一月

1 表示二月

…11 表示十二月

getfullyear() - 獲取物件以四位數字返回年份

gethours() - 獲取當前日期物件的小時

getminutes() - 獲取當前日期物件的分鐘

getseconds() - 獲取當前日期物件的秒數

gettime()- 獲取當前日期物件的時間戳

- 時間戳,指的是從格林威治標準時間的2023年1月1日,0時0分0秒

到當前日期所花費的毫秒數(1秒=1000毫秒)

- 計算機底層在儲存時間時使用都是時間戳

math物件

和其他物件不同,它不是乙個建構函式,

它屬於乙個工具類不用建立物件,它裡面封裝了數**算相關的屬性和方法

例:math.pi 表示圓周率(約等於3.14159)

內建物件總結

1.date物件 array陣列物件 math物件 1.date物件 日期物件用於處理日期與時間.獲得當日的日期.常用方法 getfullyear 獲取年份gettime 獲取毫秒getday 獲取星期setfullyear 設定具體的日期 2.array陣列物件 使用單獨的變數名來儲存一系列的值 ...

JS內建物件學習總結

日期物件 建立日期物件 var date new date 建立日期物件 設定 返回年份方法 date.getfullyear date.setfullyear 返回星期的方法 date.getddy date.gettime date.settime 字串物件 返回指定位置字串 string.ch...

JS內建物件學習總結

日期物件 建立日期物件 var date new date 建立日期物件 設定 返回年份方法 date.getfullyear date.setfullyear 返回星期的方法 date.getddy date.gettime date.settime 字串物件 返回指定位置字串 string.ch...