undefined-vs-undefined (v3)

Revision 3 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
undefined in quotes
var xyz;;

typeof xyz === 'undefined';
ready
undefined w/o quotes
var xyz;

typeof xyz === undefined;
ready
undef
var xyz;

(function(undef) {
    xyz === undef;
}());
ready

Revisions

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