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?
.toUpperCase()
var string
var upperCase = string.toUpperCase(); console.log(upperCase);
toUpperCase doesn't transform existing string, it just returns a uppercase string.