Test name | Executions per second |
---|---|
test truth | 87824928.0 Ops/sec |
test undefined | 5539744.5 Ops/sec |
test hasOwnProperty | 47439008.0 Ops/sec |
var n = {};
while(true) {
if(!n.foo)
break;
}
var n = {};
while(true) {
if(n.foo===undefined)
break;
}
var n = {};
while(true) {
if(!n.hasOwnProperty('foo'))
break;
}