I was trying to use z or zz in format to display the timezone at the end of the string and found that it\'s deprecated. Z and ZZ
z
zz
Z
ZZ
From the latest moment timezone docs
moment.tz(String).format("Z z"); // -08:00 PST moment.tz(String).zoneAbbr(); // PST moment.tz(String).zoneName(); // PST
Some examples:
moment.tz(moment.tz.guess()).zoneAbbr(); // PST moment.tz("America/New_York").zoneAbbr(); // EST