gpt4 book ai didi

javascript - toUpperCase() 字符串数组不起作用

转载 作者:行者123 更新时间:2023-12-04 10:38:52 24 4
gpt4 key购买 nike

我有以下字符串数组

let example = ["hello", "what"];

我想将此数组转换为:
 ["Hello", "what"];

为了实现这一点,我有以下代码:
example[0][0] = example[0][0].toUpperCase();

当我尝试 console.log(example) 时,我得到
["hello", "what"]

这里有什么问题?如何将第一个元素的第一个字母转换为大写?

最佳答案

试试这个

example = ["hello", "eat"];
var camelCaseArray = [];
for(var x = 0; x < example.length; x++){
camelCaseArray.push(example[x].charAt(0).toUpperCase()+example[x].slice(1));
}
console.log(camelCaseArray)

关于javascript - toUpperCase() 字符串数组不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60028191/

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