|| vs ??

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
||
const a = null
const b = a || 456
ready
??
const a = null
const b = a ?? 456
ready

Revisions

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