Javascript examples for String:Quiz
Convert the value of string to upper case.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var txt = "Hello World"; document.getElementById("demo").innerHTML = txt.toUpperCase(); </script>/*from w w w.j a va 2 s. co m*/ </body> </html>