moment js ist to iso string code example
Example 1: how to get iso date with moment
moment().toISOString(); // or format() - see below
Example 2: convert moment date to utc format moment
moment(timestamp).toISOString(true)
moment().toISOString(); // or format() - see below
moment(timestamp).toISOString(true)