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
.toUpperCase returns the upper-cased string. It is not an in-place modifier method.
.toUpperCase
string = string.toUpperCase();
Documentation: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/String/toUpperCase