"Type of undefined" vs "=== undefined" (v6)

Revision 6 of this benchmark created by Mihai Bazon on


Setup

var a = 1, b = true, c = "c", d = [], e = {}, u;

Test runner

Ready to run.

Testing in
TestOps/sec
typeof undefined
typeof a === 'undefined';
typeof b === 'undefined';
typeof c === 'undefined';
typeof d === 'undefined';
typeof e === 'undefined';
ready
=== undefined
a === undefined;
b === undefined;
c === undefined;
d === undefined;
e === undefined;
ready
=== undefined(local)
a === u;
b === u;
c === u;
d === u;
e === u;
ready
void 0
a === void 0;
b === void 0;
c === void 0;
d === void 0;
e === void 0;
ready
[][0]
a === [][0];
b === [][0];
c === [][0];
d === [][0];
e === [][0];
ready
0[0]
a === 0[0];
b === 0[0];
c === 0[0];
d === 0[0];
e === 0[0];
ready
function(){}()
a === function(){}();
b === function(){}();
c === function(){}();
d === function(){}();
e === function(){}();
ready

Revisions

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