Test name | Executions per second |
---|---|
if true then | 4442367.0 Ops/sec |
if not return | 4465844.5 Ops/sec |
const bool = true;
let i = 0;
let j = 0;
(() => {
if (bool) {
i++;
j = i + 1;
}
})();
(() => {
if (!bool) return;
i++;
j = i + 1;
})();