JavaScript toUpperCase

The JavaScript toUpperCase method is used to convert the given string into Uppercase letters, and the syntax of it is: String_Object.toUpperCase() JavaScript toUpperCase Example The following set of examples will help you understand the JS toUpperCase Function. <!DOCTYPE html> <html> <head> <title> Js Example </title> </head> <body> <h1> Example </h1> <script> var Str1 = “Learn … Read more