Reputation: 85
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
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