চলুন আগে বর্তমান তারিখটি পাওয়া যাক -
var currentDate = new Date(); console.log("The current date is as follows="+currentDate);
এখন, সেটসেকেন্ড() -
ব্যবহার করে 0 এ সেট করে সেকেন্ড/মিলিসেকেন্ড অপসারণ করি।currentDate.setSeconds(0,0);
toISOSstring() -
ব্যবহার করে ISO স্ট্রিং-এ রূপান্তর করুনcurrentDate.toISOString()
এখন আউটপুট −
সহ সম্পূর্ণ কোড দেখিউদাহরণ
var currentDate = new Date(); console.log("The current date is as follows="+currentDate); currentDate.setSeconds(0,0); console.log("After removing seconds from date, the new date is as follows="); console.log(currentDate.toISOString());
উপরের প্রোগ্রামটি চালানোর জন্য, আপনাকে নিম্নলিখিত কমান্ডটি ব্যবহার করতে হবে -
node fileName.js.
এখানে, আমার ফাইলের নাম demo143.js।
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেPS C:\Users\Amit\JavaScript-code> node demo143.js The current date is as follows=Sat Aug 01 2020 18:20:09 GMT+0530 (India Standard Time) After removing seconds from date, the new date is as follows= 2020-08-01T12:50:00.000Z