void vs undefined (v11)

Revision 11 of this benchmark created by Jeff Watkins on


Test runner

Ready to run.

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

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

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

Revisions

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