gpt4 book ai didi

javascript - 在 JavaScript 的 for-in 循环中使用 typeof

转载 作者:行者123 更新时间:2023-11-28 15:41:26 24 4
gpt4 key购买 nike

我创建了一个具有 6 个属性的对象,其中前 3 个属性是字符串数据类型,后 3 个属性是数字数据类型。我决定单独打印字符串数据类型的属性值。但我的代码正在打印所有可用属性的值。以下是我的代码。有人帮我纠正一下。

var family = {
dad: "Two",
mom: "Twenty Two",
kid: "Thirty Two",
dadAge: 42,
momAge: 41,
kidAge: 12,

};

for(prop in family){
if(typeof prop === "string"){
console.log(family[prop]);
}
}

最佳答案

应该是if(typeof family[prop] === "string")

for(prop in family){
if(typeof family[prop] === "string"){
console.log(family[prop]);
}
}

prop 表示键及其始终为“string”,而您需要使用 family[prop] 它将返回您的值已存储在对象中

关于javascript - 在 JavaScript 的 for-in 循环中使用 typeof,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23636655/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com