setUTCMilliseconds

メソッド Type method
Dateオブジェクト.setUTCHours(時) Format Date object. SetUTCHours (time)
Commentary
協定世界時のミリ秒を設定します。 Sets the milliseconds in Universal Coordinated Time. システムなどの時計には影響を与えません。 The clock does not affect systems.
サンプルコード Sample code
dateObj = new Date(); dateObj = new Date ();
dateObj.setUTCMilliseconds(567); dateObj.setUTCMilliseconds (567);
n = dateObj.getUTCMilliseconds(); n = dateObj.getUTCMilliseconds ();
outputs[0] = n; outputs [0] = n;