toUpperCase() is not making the string upper case

前端 未结 6 2230
走了就别回头了
走了就别回头了 2021-02-11 02:48

I don\'t know what I\'m doing wrong; But somehow .toUpperCase() String-function is not working on my browser or do I get something wrong?

var string          


        
6条回答
  •  粉色の甜心
    2021-02-11 03:27

    var upperCase = string.toUpperCase();
    console.log(upperCase);
    

    toUpperCase doesn't transform existing string, it just returns a uppercase string.

提交回复
热议问题