JavaScript Exercises Basic#11 - Counting only uppercase letters from the string
You will be given a string. Write a program which returns how many UPPERCASE letters there are in the string.
Result Example
Solution1 -Using String.prototype.toUpperCase() method
String.prototype.toUpperCase()
The toUpperCase() method returns the ...
reyjang.hashnode.dev2 min read