JScript التاريخ كائن

JScript Dateيمكن استخدام الكائن إلى تمثل إجبارية التواريخ والأوقات، إلى الحصول على تاريخ النظام الحالي، و إلى حساب الفرق بين تاريخي. تحتوي العديد من الخصائص المعرفة مسبقاً و وظائف. Dateكائن مخازن يوم أسبوع؛ والشهر واليوم، والسنة؛ و الوقت في الساعات والدقائق، الثواني وميلي ثانية. Th هو معلومات هو تشغيل أساس عدد millهوeconds منذ 1 يناير، 1970، 00:00:00.000 "التوقيت العالمي" (UTC)، المعروف سابقا باسم جرينتش التوقيت المتوسط. JScript معالجة التواريخ الموجودة في النطاق التقريبي من 250.000 ق. م إلى ب. م 255,000، على الرغم من أن بعض تنسيقات وظيفة هو معتمدة فقط للتواريخ في النطاق 0 ب. م من خلال 9999 بعد الميلاد

قم بإنشاء كائن التاريخ

إلى إنشاء جديد Dateالكائن، استخدم جديد على operaإلىr. يقوم المثال التالي بحساب رقم للأيام التي اجتازت و رقم للأيام التي تظل للسنة الحالي.

// Get the current date and read the year.
var today : Date = new Date();
// The getYear method should not be used. Always use getFullYear.
var thisYear : int = today.getFullYear();

// Create two new dates, one for January first of the current year,
// and one for January first of next year. The months are numbered
// starting with zero.
var firstOfYear : Date = new Date(thisYear,0,1);
var firstOfNextYear : Date = new Date(thisYear+1,0,1);

// Calculate the time difference (in milliseconds) and 
// convert the differnce to days.
const millisecondsToDays = 1/(1000*60*60*24);
var daysPast : double = (today - firstOfYear)*millisecondsToDays;
var daysToGo : double = (firstOfNextYear - today)*millisecondsToDays;

// Display the information.
print("Today is: "+today+".");
print("Days since first of the year: "+Math.floor(daysPast));
print("Days until the end of the year: "+Math.ceil(daysToGo));

إخراج th هو البرنامج هو مشابه لرقم هو:

Today is: Sun Apr 1 09:00:00 PDT 2001.
Days since first of the year: 90
Days until the end of the year: 275

راجع أيضًا:

المرجع

كائن التاريخ

موارد أخرى

الكائنات مضمنة