gpt4 book ai didi

javascript - 在 JavaScript 中使用数组时打印对象属性时的语法正确吗?

转载 作者:行者123 更新时间:2023-12-03 12:42:13 25 4
gpt4 key购买 nike

从数组中提取对象属性时正确的语法是什么?

示例

var bob = {
firstName: "Bob",
lastName: "Jones",
phoneNumber: "(650) 777-7777",
email: "bob.jones@example.com"
};

var mary = {
firstName: "Mary",
lastName: "Johnson",
phoneNumber: "(650) 888 - 8888",
email: "mary.johnson@example.com"
}

var contact = [bob, mary];

console.log(contact[1.phoneNumber]); // <-- Need help here to print phoneNumber!

那么,当我想使用联系人数组从 mary 对象打印出phoneNumber 属性时,正确的语法是什么?

最佳答案

console.log(contact[1.phoneNumber]); 将导致意外的 token 非法,因为没有这样的号码。

试试这个:

console.log(contact[1].phoneNumber);

DEMO

关于javascript - 在 JavaScript 中使用数组时打印对象属性时的语法正确吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23494356/

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