compare undefined

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
delete
let foo = {
	a: 1,
	b: 2
};

delete foo.a;
ready
undefined
let foo = {
	a: 1,
	b: 2
};

foo.a = undefined;
ready

Revisions

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