根据世界时( UTC )返回时间的秒
dateObject.getUTCSeconds();
当 dateObject 用世界时表示时,返回它的秒字段,该值是一个 0 ~ 59 之间的整数。
var DATE = new Date(); console.log( DATE.getUTCSeconds() );
>>> 20