gpt4 book ai didi

JavaScript toUpperCase() 方法

转载 作者:行者123 更新时间:2023-12-02 18:54:59 26 4
gpt4 key购买 nike

我是 Javascript 新手,对 toUpperCase() 方法有疑问:

let firstName = prompt("Please enter your first name.")

如果我想将上面的语句输出为大写,我使用 toUpeprCase() 方法:

firstName = firstName.toUpperCase();

但是,如果我只是编写以下代码并且不像上面那样重新分配firstName,那么名字不会变成大写:

firstName.toUpperCase();

为什么我需要“重新分配”firstName 才能将其变为大写?很难记住这一点,因为从逻辑上讲,您会认为只写firstName.toUpperCase();就可以了。

谢谢

最佳答案

.toUpperCase()返回转换为大写的字符串值,因此,您需要重新分配它。

关于JavaScript toUpperCase() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66305331/

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