標(biāo)準(zhǔn)時(shí)間:1970年1月1日 00:00:00
//獲取當(dāng)開始時(shí)間到標(biāo)準(zhǔn)時(shí)間的毫秒數(shù)
var start=+new Date();
for(var i=0;i<1000;i++){
console.log(1);
}
//獲取代碼結(jié)束時(shí)間到標(biāo)準(zhǔn)時(shí)間的毫秒數(shù)
var end=+new Date();
console.log("運(yùn)行時(shí)間:",end-start,"ms");