日付オブジェクト
1. Date オブジェクトとは何ですか?
Date オブジェクトは任意の日付を保存でき、ミリ秒 (1/1000 秒) まで正確です。
構文: var Udate=new Date();
注: 初期値は現在時刻 (現在のコンピュータのシステム時刻) です。
2. Date オブジェクトの共通メソッド:
3.メソッドインスタンスの日付
var newTime=new Date();//現在時刻を取得します
var millSecond=Date.now();//現在の日付から変換されたミリ秒数
var full Year=newTime.getFull Year();// 年を取得します
var year=newTime.get Year();//年を取得します
var month=newTime.getMonth();//月を取得し、0-11 を返します。0 は 1 月、11 は 12 月を意味します
var week=newTime.getDay();// 曜日を取得 0 ~ 6 の数値を返します。0 は日曜日を意味します
var today=newTime.getDate();//今日の日付を取得します
var hours=newTime.getHours();//時間を取得します
var minutes=newTime.getMinutes();// 分を取得します
var Seconds=newTime.getSeconds();//秒を取得
console.log(newTime);// 2015 年 2 月 4 日水曜日 10:54:17 GMT 0800 (中国標準時)
console.log(millSecond);// 1423029309565
console.log(fullyear);// 2015
console.log(年);//115
console.log(month);//1 は 2 月を意味します
console.log(week);//3 は水曜日を意味します
console.log(today);//4 No. 4
console.log(時間);//10 時間
console.log(分);//54 分
console.log(秒);//17 秒
数学オブジェクト
1. Math オブジェクト とは何ですか?
Math オブジェクト。データの数学的計算を提供します。
注: Math オブジェクトは固有のオブジェクトです。Math をオブジェクトとして直接使用して、そのすべてのプロパティとメソッドを呼び出すことができます。これが、Date オブジェクトや String オブジェクトとの違いです。
2. Math オブジェクトのプロパティとメソッド
Math オブジェクトのプロパティ
Math オブジェクトのメソッド
3. Math オブジェクトの個々のメソッド インスタンス
1): ceil() メソッドは、x 以上で x に最も近い整数を切り上げて返します。
document.write(Math.ceil(0.8) "
")//1
document.write(Math.ceil(6.3) "
")//7
document.write(Math.ceil(5) "
")//5
document.write(Math.ceil(3.5) "
")//4
document.write(Math.ceil(-5.1) "
")//-5
document.write(Math.ceil(-5.9))//-5
2): Floor() メソッドは切り捨てて、x 以下で x に最も近い整数を返します。
document.write(Math.floor(0.8) "
")//0
document.write(Math.floor(6.3) "
")//6
document.write(Math.floor(5) "
")//5
document.write(Math.floor(3.5) "
")//3
document.write(Math.floor(-5.1) "
")//-6
document.write(Math.floor(-5.9))//-6
3):round() メソッドは数値を最も近い整数に丸めることができます
document.write(Math.round(0.8) "
")//1
document.write(Math.round(6.3) "
")//6
document.write(Math.round(5) "
")//5
document.write(Math.round(3.5) "
")//4
document.write(Math.round(-5.1) "
")//-5
document.write(Math.round(-5.9) "
")//-6
4):random() メソッドは、0 ~ 1 (0 以上 1 未満) の乱数を返すことができます。
document.write(Math.random());//1 を除く 0 から 1 までの数値を返します
document.write(Math.random()*10);//10 を除く 0 ~ 10 の数値を返します
5): min() メソッド: 一連の値の最小値を返します
document.write(Math.min(2,3,4,6));//2
配列内の最小値を取得するには、apply() メソッドを使用します。
var 値=[3,2,1,8,9,7];
document.write(Math.min.apply(Math,values) "
");//1
apply の最初のパラメーターとして Math オブジェクト、2 番目のパラメーターとして任意の配列
6): max() メソッド: 一連の値の最大値を返します
document.write(Math.max(2,3,4,6));//6
配列内の最小値を取得するには、apply() メソッドを使用します。
var 値=[3,2,1,8,9,7];
document.write(Math.max.apply(Math,values) "
");//9
上記は JavaScript の Date (日付オブジェクト) と Math オブジェクトに関するものです。気に入っていただければ幸いです。