Array of strings to uppercase in JavaScript | Assignment Expert

Problem Statement:

We are given an array of strings, we need to convert all the strings of an array to the Upper Case and at last, we should print/console the converted array having upper case strings.
For example: myArray = [‘i’, ‘love’, ‘copyassignment’]=> [ ‘I’, ‘LOVE’, ‘COPYASSIGNMENT’ ]

Code for Array of strings to uppercase in JavaScript:

myArray = ['i', 'love', 'copyassignment']
for(let i=0; i<myArray.length; i++){
  myArray[i] = myArray[i].toUpperCase()
}
console.log(myArray)

Output:

Output for Array of strings to uppercase in JavaScript

Also Read:

Share:

Author: Harry

Hello friends, thanks for visiting my website. I am a Python programmer. I, with some other members, write blogs on this website based on Python and Programming. We are still in the growing phase that's why the website design is not so good and there are many other things that need to be corrected in this website but I hope all these things will happen someday. But, till then we will not stop ourselves from uploading more amazing articles. If you want to join us or have any queries, you can mail me at admin@copyassignment.com Thank you