 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Finding the nth day from today - JavaScript (JS Date)
We are required to write a JavaScript function that takes in a number n as the only input.
The function should first find the current day (using Date Object in JavaScript) and then the function should return the day n days from today.
For example −
If today is Monday and n = 2,
Then the output should be −
Wednesday
Example
Following is the code −
const num = 15; const findNthDay = num => {    const weekday=new Array(7);    weekday[1]="Monday";    weekday[2]="Tuesday";    weekday[3]="Wednesday";    weekday[4]="Thursday";    weekday[5]="Friday";    weekday[6]="Saturday";    weekday[7]="Sunday"    const day = new Date().getDay();    const daysFromNow = num % 7;    return weekday[(day + daysFromNow) % 7]; }; console.log(findNthDay(num));  Output
Following is the output in the console −
Friday
Advertisements
 