Test name | Executions per second |
---|---|
action | 687700352.0 Ops/sec |
actionWithLog | 66662.4 Ops/sec |
actionWithLogData | 58553.5 Ops/sec |
let counter = 0;
function action() {
counter++;
}
function actionWithLog() {
counter++;
console.log('ok');
}
function actionWithLogData() {
counter++;
console.log('ok', counter);
}
action();
actionWithLog();
actionWithLogData();