为什么我只返回最后一次 'hasOwnProperty' 调用的结果?

Why am I only getting back the results of my final 'hasOwnProperty' call?

我只是想知道为什么当我多次调用 'hasOwnProperty' 方法时,控制台只返回一个布尔值? returns 总是最后的调用。 我的其余代码功能齐全,如果我切换顺序,我会调用以检查 3 个属性的位置 returns 最后一个调用。

spot.hasOwnProperty("sit");
spot.hasOwnProperty("name");
spot.hasOwnProperty("species"); 

大家好。

它们都是return但控制台只显示最新命令的输出;您可以将它们放在一个数组中以一次查看所有响应

[spot.hasOwnProperty('sit'), spot.hasOwnProperty('name')]

缺乏上下文,我假设这归结为布尔逻辑。如果您一次检查一个操作,您将获得正确的值。

var spot = {};
spot.sit = true;
//spot.name = "Spot";
spot.species = "dog";

console.log(spot.hasOwnProperty('sit'));
console.log(spot.hasOwnProperty('name'));
console.log(spot.hasOwnProperty('species'));

如果您一次检查所有值,有 2 个选项:布尔 AND (&&) 或布尔 OR (||)。

    var spot = {};
    //spot.sit = true;
    spot.name = "Spot";
    spot.species = "dog";
    
    // Boolean OR
    console.log(spot.hasOwnProperty('sit') || spot.hasOwnProperty('name') || spot.hasOwnProperty('species'));
    
    // Boolean AND
    console.log(spot.hasOwnProperty('sit') && spot.hasOwnProperty('name') && spot.hasOwnProperty('species'));