Test name | Executions per second |
---|---|
test truth | 157604176.0 Ops/sec |
test undefined | 15435528.0 Ops/sec |
test hasOwnProperty | 92550024.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;
}