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?
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?
+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());