Testing https://youtube.com/shorts/icvu9Zy3ROo?si=nu2-gKLfmhVIzM_n

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Ternary
const a = 10;
const b = 8;

const min = a < b ? a : b;

console.log(min)
ready
Array thing
const a = 10;
const b = 8;

const min = [a, b][+(a<b)]

console.log(min)
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.