Sample code for 30+ languages & platforms
JavaScript

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.
Note
This example is intended for running within a Chilkat.Js embedded JavaScript engine. All Chilkat JavaScript examples require Chilkat v11.4.0 or greater.
JavaScript
var success = false;

var dt = new CkDateTime();

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