void vs undefined (v14)

Revision 14 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
undefined
function b(a) {
 return (a === undefined);
};

b();
ready
void2
function b(a) {
 return (a === void 0);
};

b();
ready
typeof
function b(v) {
 return "undefined" === typeof(v);
}

b();
ready

Revisions

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