Default argument

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Default argument
function def(a = []) {
	return a.filter(Boolean);
}
ready
With null-check
function def(a) {
	return a ? a.filter(Boolean) : [];
}
ready

Revisions

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