Answers for "get timezone format javascript"

4

js get timezone name

console.log(Intl.DateTimeFormat().resolvedOptions().timeZone)
Posted by: Guest on October-31-2020
0

javascript parse date in current timezone

/*  @param {string} s - an ISO 8001 format date and time string
**                      with all components, e.g. 2015-11-24T19:40:00
**  @returns {Date} - Date instance from parsing the string. May be NaN.
*/
function parseISOLocal(s) {
  var b = s.split(/D/);
  return new Date(b[0], b[1]-1, b[2], b[3], b[4], b[5]);
}

document.write(parseISOLocal('2015-11-24T19:40:00'));
Posted by: Guest on June-15-2021

Code answers related to "get timezone format javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language