Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36
Chrome 128
Mac OS X 10.15.7
Desktop
6 months ago
Test name Executions per second
test truth 157604176.0 Ops/sec
test undefined 15435528.0 Ops/sec
test hasOwnProperty 92550024.0 Ops/sec
Tests:
  • test truth

    AخA
     
    var n = {};
    while(true) {
        if(!n.foo) 
            break;
    }
  • test undefined

     
    var n = {};
    while(true) {
        if(n.foo===undefined) 
            break;
    }
  • test hasOwnProperty

     
    var n = {};
    while(true) {
        if(!n.hasOwnProperty('foo')) 
            break;
    }