Mega Code Archive

 
Categories / JavaScript Reference / Javascript Methods
 

ToUpperCase() Example

<html> <body> <button onclick="var myS = new String('Sample String'); alert(myS.toUpperCase());"> convert 'Sample String' to uppercase </button> </body> </html>