Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Node.js) Get Current Date/Time as Timestamp (YYYY-MM-DDThh:mm:ssTZD)Demonstrates how to get the current system date/time in YYYY-MM-DDThh:mm:ssTZD format.
var os = require('os'); if (os.platform() == 'win32') { var chilkat = require('@chilkat/ck-node23-win64'); } else if (os.platform() == 'linux') { if (os.arch() == 'arm') { var chilkat = require('@chilkat/ck-node23-linux-arm'); } else if (os.arch() == 'arm64') { var chilkat = require('@chilkat/ck-node23-linux-arm64'); } else { var chilkat = require('@chilkat/ck-node23-linux-x64'); } } else if (os.platform() == 'darwin') { var chilkat = require('@chilkat/ck-node23-mac-universal'); } function chilkatExample() { var dt = new chilkat.CkDateTime(); var success = dt.SetFromCurrentSystemTime(); // Get a UTC time. var bLocal = false; var timestamp = dt.GetAsTimestamp(bLocal); console.log("Current UTC Time: " + timestamp); // Get a local time. bLocal = true; timestamp = dt.GetAsTimestamp(bLocal); console.log("Current Local Time: " + timestamp); // Sample output: // // Current UTC Time: 2022-03-01T00:48:58Z // Current Local Time: 2022-02-28T18:48:58-06:00 } chilkatExample(); |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.