JavaScript Exercises Basic#12 - String to Uppercase
You will be given a string with mixed upper and lower case letters. Write a program which returns UPPERCASED string.
Result Example
Solution
Declare a variable named 'answer' and store an empty string.
Use for...of loop to iterate through the strin...
reyjang.hashnode.dev2 min read