gpt4 book ai didi

typescript - TypeScript 中是否有秒表的任何实现?

转载 作者:行者123 更新时间:2023-12-03 22:25:37 27 4
gpt4 key购买 nike

我想对写于 的网站上的一些关键功能进行性能测量。 typescript .我想知道是否有任何实现 秒表 类似于.NET System.Diagnostics.Stopwatch类(class) typescript ?

最佳答案

我有一个简单的实现 here :

/**
* Simple timer
*/
export function timer() {
let timeStart = new Date().getTime();
return {
/** <integer>s e.g 2s etc. */
get seconds() {
const seconds = Math.ceil((new Date().getTime() - timeStart) / 1000) + 's';
return seconds;
},
/** Milliseconds e.g. 2000ms etc. */
get ms() {
const ms = (new Date().getTime() - timeStart) + 'ms';
return ms;
}
}
}

用法
const howLong = timer();
// do some stuff
console.log(howLong.ms);

还有很多其他的实现以及内置的 console.time功能你可以看看。

关于typescript - TypeScript 中是否有秒表的任何实现?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44122349/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com