I want to use moment.js to shift an input moment to a different timezone and get its timestamp.
moment.tz(moment(), \"Pacific/Auckland\").valueOf(); <
moment.tz(moment(), \"Pacific/Auckland\").valueOf();
var time = moment.tz("2016-04-25 12:00", "Pacific/Auckland");
then
time.format();
Try this