“Dodaj datę miesiąca teraz JavaScript” Kod odpowiedzi

Dodaj datę miesiąca teraz JavaScript


var newDate = new Date(date.setMonth(date.getMonth()+8));

Lucky Lemur

Dodaj datę miesiąca teraz JavaScript

var myCurrentDate=new Date();
var myFutureDate=new Date(myCurrentDate);
    myFutureDate.setDate(myFutureDate.getDate()+ 8);//myFutureDate is now 8 days in the future
Grepper

Odpowiedzi podobne do “Dodaj datę miesiąca teraz JavaScript”

Pytania podobne do “Dodaj datę miesiąca teraz JavaScript”

Więcej pokrewnych odpowiedzi na “Dodaj datę miesiąca teraz JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu