markdown 使用控制台日志记录运行函数所需的时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用控制台日志记录运行函数所需的时间相关的知识,希望对你有一定的参考价值。

## To set up the time log function

```
const timeIt = (label, fn) => {
  console.time(label);
  fn();
  console.timeEnd(label);
}
```

## Example to use it

```
const arrayOfRandoms = randomCeil => length => Array.from({length: length}, (v, i) => Math.floor(Math.random() * randomCeil));

const arrOfThousand = arrayOfRandoms(100)(1000);

// use time log
timeIt('thousand - map', () => {
  const resultFrom1000 = arrOfThousand
    .map(val => val * 3);
});
```

以上是关于markdown 使用控制台日志记录运行函数所需的时间的主要内容,如果未能解决你的问题,请参考以下文章

获取在C#中输入控制台输入所需的时间

Debezium 失败 - 无法复制,因为主服务器清除了所需的二进制日志

PowerShell Write-EventLog 未写入所需的事件日志

我们可以在运行时更改log4j的日志记录级别吗?

开源日志工具log4j

为啥浏览器控制台日志给我错误“数据表不是函数”?