Skip to content

Instantly share code, notes, and snippets.

@zapkub
Last active October 31, 2017 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zapkub/9632a200ad36ab077bc50fe269116953 to your computer and use it in GitHub Desktop.
Save zapkub/9632a200ad36ab077bc50fe269116953 to your computer and use it in GitHub Desktop.
const momentTimeZone = require('moment-timezone');
function getBKKTime() {
const date = new Date()
const UTCDateString = date.toISOString()
const BKKDateString = moment.tz(UTCDateString, 'Asia/Bangkok').format()
return BKKDateString;
}
console.log(getBKKTime())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment