如何计算JS中的时间戳是几个月前的?例如:1577808000

var t = 1577808000;//时间戳(秒)

var ot =新日期(t * 1000);//变成时间对象(js的时间戳是毫秒)

var oy = ot . get full year();//年份

var om = ot . getmonth()+1;//月份

var TT =新日期();//今天

var ty = TT . get full year();//今天的年份

var TM = TT . getmonth()+1;//今天的月份

var GM =(ty-oy)* 12+(TM-om);//几个月后

alert(ot . tolocaledatestring()+“Today“+GM+“Months“);