Useful JavaScript codes to GetStarted:
After adding the momentJs block to your screen
-------
$parameters.LocalTimezone = moment().local().format()
$parameters.ConvertedToUTC = moment().utc().format()
$parameters.ConvertedToAnotherTimezone = moment().utcOffset(-3).format()
// these are equivalent
// moment().utcOffset("+08:00");
// moment().utcOffset(8);
// moment().utcOffset(480);
---------
Check out out Demo App!
For more information, check out https://momentjs.com/docs/#/manipulating/