- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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