-2

2011-01-22T03:41:02+0000 - What time zone is for that string?

And how can I get the current time in this time zone in javascript?

Roman
  • 2,145
  • 4
  • 26
  • 33

1 Answers1

4

+0000 is GMT/UTC. Given the date, that's a valid date/time in the GMT timezone (UK, at least part of Portugal, parts of Africa, ...).

And how can I get the current time in this time zone in javascript?

I'm not quite sure what you're asking here. You can get the current time in UTC like this:

var dt = new Date();
console.log(dt.toISOString());
T.J. Crowder
  • 1,031,962
  • 187
  • 1,923
  • 1,875