標準物件
typeof 123
'number'
typeof '123'
'string'
typeof true
'boolean'
typeof nan
'number'
typeof
'object'
typeof {}
'object'
typeof math.abs
'function'
typeof undefined
"undefined"
基本使用
var now = new date(); // sat feb 12 2022 18:53:51 gmt+0800 (中國標準時間) {}
now.getfullyear(); // 年
now.getmonth(); // 月 0~11 代表月
now.getdate(); // 日
now.getday(); // 星期幾
now.gethours(); // 時
now.getminutes(); // 分
now.getseconds(); // 秒
now.gettime(); // 時間戳 全世界統一 1970 1.1 0:00:00 毫秒數
console.log(new date(1644663231185)) // 時間戳轉為時間
轉換
now = new date(1644663231185)
sat feb 12 2022 18:53:51 gmt+0800 (中國標準時間)
now.tolocalestring() // 注意,呼叫是乙個方法,不是乙個屬性!
'2022/2/12 18:53:51'
now.togmtstring()
'sat, 12 feb 2022 10:53:51 gmt'
Date日期物件
1 日期物件可以儲存任意乙個日期,可以精確到毫秒數 定義乙個日期物件 var udate new date 使用關鍵字new,data 的首字母必須大寫 是udate成為日期物件,並且初始值為當前時間 定義初始值方法 var d new data 2012,10,1 var d new data o...
Date 日期物件
date 日期物件。這個物件可以儲存任意乙個日期,從 0001 年到 9999 年,並且可以精確到毫秒數 1 1000 秒 在內部,日期物件是乙個整數,它是從 1970 年 1 月 1 日零時正開始計算到日期物件所指的日期的毫秒數。如果所指日期比 1970 年早,則它是乙個負數。所有日期時間,如果不...
Date 日期物件
1 var 變數名 new date 日期字串 2 可以傳入七個引數 分別是 年月日 時分秒 毫秒 引數至少要傳2個 var 變數名 new date 2020,4,5,6,30,30,300 3 date物件中 建立時只傳入乙個引數 這個引數表示的是 毫秒數 var date new date 2...