It will convert the given string to uppercase.
string
1.0.0
upperCase("--foo-bar--");// => "--FOO-BAR--" Copy
upperCase("--foo-bar--");// => "--FOO-BAR--"
upperCase("fooBar");// => "FOOBAR" Copy
upperCase("fooBar");// => "FOOBAR"
upperCase("__foo_bar__");// => "__FOO_BAR__" Copy
upperCase("__foo_bar__");// => "__FOO_BAR__"
It will convert the given
string
to uppercase.