যেমন আমরা জানি 0 মান রবিবারের জন্য এবং 6 শনিবারের জন্য৷ প্রথমত, আপনাকে getDay().
এর সাহায্যে দিন পেতে হবেআসুন একটি তারিখ নির্ধারণ করি -
var givenDate=new Date("2020-07-18");
এখন, আমরা দিনটি পাব −
var currentDay = givenDate.getDay();
তারিখটি উইকএন্ড কিনা তা নির্ধারণ করার জন্য কোডটি নিচে দেওয়া হল -
উদাহরণ
var givenDate=new Date("2020-07-18"); var currentDay = givenDate.getDay(); var dateIsInWeekend = (currentDay === 6) || (currentDay === 0); if(dateIsInWeekend==true){ console.log("The given date "+givenDate+" is a Weekend"); } else { console.log("The given date " +givenDate+"is a not a Weekend"); }
উপরের প্রোগ্রামটি চালানোর জন্য, আপনাকে নিম্নলিখিত কমান্ডটি ব্যবহার করতে হবে -
node fileName.js.
এখানে, আমার ফাইলের নাম demo66.js।
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPS C:\Users\Amit\JavaScript-code> node demo66.js The given date Sat Jul 18 2020 05:30:00 GMT+0530 (India Standard Time) is a Weekend