gpt4 book ai didi

Javascript - 如何将对象中的 key.value 大写?

转载 作者:行者123 更新时间:2023-11-30 08:33:22 25 4
gpt4 key购买 nike

如何将每个联系人名字的首字母大写?

 String.prototype.capitalize = function (string) { return string.charAt(0).toUpperCase() + string.slice(1);}

var contactList = {};

contactList.bobSmith = {
firstName: "bob",
lastName: "smith",
location: "new york"
};

contactList.johnDoe = {
firstName: "john",
lastName: "doe",
location: "san francisco"
};

var contact2 = contactList["johnDoe"].firstName;
contact1.capitalize();
contact2.capitalize();
console.log(contact1 + " " + contact2);

我收到一条错误消息,内容为“Uncaught TypeError: Cannot read property 'charAt' of undefined”。

最佳答案

function () { return this.charAt(0).toUpperCase() + this.slice(1);

关于Javascript - 如何将对象中的 key.value 大写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34644799/

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