En son web geliştirme öğreticiler
 

JavaScript Date prototype Property

<JavaScript tarihi nesne

Örnek

tarih myProp denilen bir ay adı özelliğini nesne verir yeni bir tarih yöntemim olsun:

Date.prototype.myMet = function() {
    if (this.getMonth() == 0){this.myProp = "January"};
    if (this.getMonth() == 1){this.myProp = "February"};
    if (this.getMonth() == 2){this.myProp = "March"};
    if (this.getMonth() == 3){this.myProp = "April"};
    if (this.getMonth() == 4){this.myProp = "May"};
    if (this.getMonth() == 5){this.myProp = "June"};
    if (this.getMonth() == 6){this.myProp = "July"};
    if (this.getMonth() == 7){this.myProp = "August"};
    if (this.getMonth() == 8){this.myProp = "Spetember"};
    if (this.getMonth() == 9){this.myProp = "October"};
    if (this.getMonth() == 10){this.myProp = "November"};
    if (this.getMonth() == 11){this.myProp = "December"};
};

Bir Date nesnesi olun, ardından myMet yöntemini çağırın:

var d = new Date();
d.myMet();
var monthname = d.myProp;

MonthName sonucu olacaktır:

Kendin dene "

Tanımı ve Kullanımı

Prototip yapıcı Eğer yeni özellikler ve yöntemler eklemenize izin verir Date() nesnesi.

Bir özellik oluştururken, TÜM tarih nesneleri özelliğini verilecek ve varsayılan olarak değeri.

bir yöntemi oluştururken, TÜM tarih nesneleri bu yöntem kullanılabilir olacaktır.

Note: Date.prototype ancak, tek bir tarih nesnesine ifade etmez Date() kendisi nesne.

Note: Prototip tüm JavaScript nesneler için kullanılabilir küresel bir nesne yapıcı olduğunu.


Tarayıcı Desteği

özellik
prototype Evet Evet Evet Evet Evet

Sözdizimi

Date.prototype. name = value

Teknik detaylar

JavaScript Versiyon: 1.1

<JavaScript tarihi nesne