vinothini
vinothini

Reputation: 85

Display Date with Current Timezone in angularjs

How to display date with current UTC timezone abbreviation in Angular js. For example I want to display date as SEPTEMBER 2, 2014 3:15 PM PST or SEPTEMBER 2, 2014 3:15 PM IST, etc

Upvotes: 2

Views: 3327

Answers (1)

Jun Han
Jun Han

Reputation: 13831

AngularJS only supports 'UTC' timezone. You could refer to this API Reference for details. Instead, you could use other JS library to do this thing. Suggest using moment-timezone.js

Upvotes: 1

Related Questions