“Dapatkan zona waktu” Kode Jawaban

Linux Cara Menampilkan Waktu Saat Ini dengan TimeZone

timedatectl

Output
------------
                      Local time: Tue 2019-12-03 16:30:44 UTC
                  Universal time: Tue 2019-12-03 16:30:44 UTC
                        RTC time: Tue 2019-12-03 16:30:44
                       Time zone: Etc/UTC (UTC, +0000)
       System clock synchronized: no
systemd-timesyncd.service active: yes
                 RTC in local TZ: no
Successful Salamander

Dapatkan zona waktu

var timedifference = new Date().getTimezoneOffset();
Difficult Dolphin

Dapatkan waktu zona waktu tertentu

function calcTime(city, offset) {

    d = new Date();

    utc = d.getTime() + (d.getTimezoneOffset() * 60000);

    nd = new Date(utc + (3600000*offset));

    return "The local time in " + city + " is " + nd.toLocaleString();

}

// get Bombay time
console.log(calcTime('Bombay', '+5.5'));

// get Singapore time
console.log(calcTime('Singapore', '+8'));

// get London time
console.log(calcTime('London', '+1'));
Witty Wryneck

Dapatkan zona waktu

if (!sessionStorage.getItem('timezone')) {
  var tz = jstz.determine() || 'UTC';
  sessionStorage.setItem('timezone', tz.name());
}
var currTz = sessionStorage.getItem('timezone');
Governor

Dapatkan zona waktu

var timedifference = new Date().getTimezoneOffset();
//This returns the difference from the clients timezone from UTC time. You can then play around with it as you like.
Difficult Dolphin

Jawaban yang mirip dengan “Dapatkan zona waktu”

Pertanyaan yang mirip dengan “Dapatkan zona waktu”

Lebih banyak jawaban terkait untuk “Dapatkan zona waktu” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya