How would you convert a string to uppercase?
const str = "hello";
str.toUpperCase()
str.toUpper()
str.capitalize()
str.upper()