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

Revision 2 of this benchmark created on


Setup

const a = 10;
const b = 8;

Test runner

Ready to run.

Testing in
TestOps/sec
Ternary
const min = [a, b][+(a<b)];
ready
Array thing
const min = a < b ? a : b;
ready

Revisions

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