HEAD
Write a function which converts the input string to uppercase.
No examples
function makeUpperCase(str) {
return str.toUpperCase()
}
Try it yourself - CodeWars
Write a function which converts the input string to uppercase.
No examples
function makeUpperCase(str) {
return str.toUpperCase()
}
Try it yourself - CodeWars