প্রথমে, বর্তমান তারিখ −
পানvar currentDateTime = new Date();
বর্তমান তারিখ/সময় সেকেন্ডে পেতে, getTime()/1000 ব্যবহার করুন।
উদাহরণ
নিম্নলিখিত কোড -
var currentDateTime = new Date(); console.log("The current date time is as follows:"); console.log(currentDateTime); var resultInSeconds=currentDateTime.getTime() / 1000; console.log("The current date time in seconds is as follows:") console.log(resultInSeconds);
উপরের প্রোগ্রামটি চালানোর জন্য, আপনাকে নিম্নলিখিত কমান্ডটি ব্যবহার করতে হবে -
node fileName.js.
এখানে, আমার ফাইলের নাম demo285.js।
আউটপুট
এটি কনসোলে নিম্নলিখিত আউটপুট তৈরি করবে -
The current date time is as follows: 2020-08-28T16:13:35.987Z The current date time in seconds is as follows: 1598631215.987