getUTCDay

メソッド Type method
Dateオブジェクト.getUTCDay() Format Date object. GetUTCDay ()
Commentary
協定世界時の曜日を返します。 Returns the day of the Coordinated Universal Time.
サンプルコード Sample code
dateObj = new Date(); dateObj = new Date ();
n = dateObj.getUTCDay(); n = dateObj.getUTCDay ();
d = "日月火水木金土".charAt(n); d = "Saturday, Tuesday Mizuki Kimu Moon". charAt (n);
outputs[0] = d; outputs [0] = d;