Js data ora alla settimana

Esempi di codice

1
0

N

Date.getDay()
// Javascript date getDay() method returns the day of the week for the specified
// date according to local time. The value returned by getDay() is an integer 
// corresponding to the day of the week: 0 for Sunday, 1 for Monday, 2 for Tuesday, and so on.
0
0

N

function nextweek(){
    var today = new Date();
    var nextweek = new Date(today.getFullYear(), today.getMonth(), today.getDate()+7);
    return nextweek;
}

In altre lingue

Questa pagina è in altre lingue

Русский
..................................................................................................................
English
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................