Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

JavaScriptで明日と明後日を取得する


オブジェクトnewDate()が当日のJavaScript日付を返すJavaScriptのDateクラスを使用して、次の2日間の日付を見つける必要があります。

これはかなり単純な問題であり、数行のコードでこれを実現できます。まず、今日の日付を取得します-

// getting today's date
const today = new Date();

この関数のコードを書いてみましょう-

// getting today's date
const today = new Date();
// initializing tomorrow with today's date
const tomorrow = new Date(today);
// increasing a day in tomorrow and setting it to tomorrow
tomorrow.setDate(tomorrow.getDate() + 1);
const dayAfterTomorrow = new Date(today);
dayAfterTomorrow.setDate(dayAfterTomorrow.getDate() + 2);
console.log(today);
console.log(tomorrow);
console.log(dayAfterTomorrow);
>

出力

以下はコンソールの出力です-

2020-08-13T17:13:26.401Z
2020-08-14T17:13:26.401Z
2020-08-15T17:13:26.401Z

  1. 日付を1日デクリメントするJavaScriptプログラム

    以下は、JavaScriptで日付を1日デクリメントするコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style>  

  2. HTMLフォームの値を取得してJavaScriptでコンソールに表示しますか?

    HTMLフォームの値を取得するには、valueプロパティを使用します。以下が入力タイプであるとしましょう- <input type="text" id="getValues" value="My Name is John Smith" /> 上記の値「私の名前はジョン・スミス」をコンソールに表示する必要があります。 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"